mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
37 lines
623 B
SCSS
37 lines
623 B
SCSS
@import '../../styles/themes';
|
|
|
|
@include nb-install-component() {
|
|
h5 {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.settings-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
|
|
width: 90%;
|
|
margin: 0 auto 3rem;
|
|
|
|
a {
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|