kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
rodzic
656c872aad
commit
c8fc995ccd
|
@ -72,14 +72,14 @@ class AboutPage extends ImmutablePureComponent {
|
||||||
{' '}
|
{' '}
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href='#' className='sidebar-menu-profile__name' onClick={this.setLocale(defaultLocale)}>
|
<a href='#' onClick={this.setLocale(defaultLocale)}>
|
||||||
{languages[defaultLocale] || defaultLocale}
|
{languages[defaultLocale] || defaultLocale}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{
|
{
|
||||||
page.get('locales').map(locale => (
|
page.get('locales').map(locale => (
|
||||||
<li key={locale}>
|
<li key={locale}>
|
||||||
<a href='#' className='sidebar-menu-profile__name' onClick={this.setLocale(locale)}>
|
<a href='#' onClick={this.setLocale(locale)}>
|
||||||
{languages[locale] || locale}
|
{languages[locale] || locale}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -88,6 +88,7 @@ class AboutPage extends ImmutablePureComponent {
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
console.log(slug, page);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='content'>
|
<div className='content'>
|
||||||
|
|
|
@ -360,7 +360,24 @@ $fluid-breakpoint: $maximum-width + 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.also-available {
|
.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 {
|
.public-layout {
|
||||||
|
|
Ładowanie…
Reference in New Issue