refactor(theme): style settings sidebar

This commit is contained in:
tibing 2017-08-31 14:58:28 +03:00
parent 5b6a81a394
commit 9bfa522da3
4 changed files with 38 additions and 24 deletions

View file

@ -1,21 +1,36 @@
@import '../../styles/themes';
@include nb-install-component() {
h5 {
margin-bottom: 1.5rem;
}
.settings-row {
display: flex;
flex-direction: row;
justify-content: space-between;
padding-bottom: 0.5rem;
align-items: center;
flex-wrap: wrap;
width: 90%;
margin: 0 auto 3rem;
a {
font-size: 2rem;
margin-right: 1rem;
color: nb-theme(color-white);
text-decoration: none;
font-size: 1.75rem;
margin-bottom: 0.5rem;
color: nb-theme(color-fg);
&.selected {
color: nb-theme(color-success);
}
@include nb-for-theme(cosmic) {
&.selected {
color: nb-theme(link-color-active);
}
}
}
}
}