kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
rodzic
656c872aad
commit
c8fc995ccd
|
@ -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 {
|
||||
|
|
Ładowanie…
Reference in New Issue