styling
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
656c872aad
commit
c8fc995ccd
2 changed files with 21 additions and 3 deletions
|
@ -72,14 +72,14 @@ class AboutPage extends ImmutablePureComponent {
|
|||
{' '}
|
||||
<ul>
|
||||
<li>
|
||||
<a href='#' className='sidebar-menu-profile__name' onClick={this.setLocale(defaultLocale)}>
|
||||
<a href='#' onClick={this.setLocale(defaultLocale)}>
|
||||
{languages[defaultLocale] || defaultLocale}
|
||||
</a>
|
||||
</li>
|
||||
{
|
||||
page.get('locales').map(locale => (
|
||||
<li key={locale}>
|
||||
<a href='#' className='sidebar-menu-profile__name' onClick={this.setLocale(locale)}>
|
||||
<a href='#' onClick={this.setLocale(locale)}>
|
||||
{languages[locale] || locale}
|
||||
</a>
|
||||
</li>
|
||||
|
@ -88,6 +88,7 @@ class AboutPage extends ImmutablePureComponent {
|
|||
</ul>
|
||||
</div>
|
||||
);
|
||||
console.log(slug, page);
|
||||
|
||||
return (
|
||||
<div className='content'>
|
||||
|
|
|
@ -360,7 +360,24 @@ $fluid-breakpoint: $maximum-width + 20px;
|
|||
}
|
||||
|
||||
.also-available {
|
||||
margin-top: 0;
|
||||
padding-top: 0;
|
||||
|
||||
ul {
|
||||
display: inline;
|
||||
padding-left: 0;
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
display: inline;
|
||||
&::after {
|
||||
content: ' · ';
|
||||
}
|
||||
}
|
||||
|
||||
li:last-child::after {
|
||||
content: '';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.public-layout {
|
||||
|
|
Loading…
Reference in a new issue