mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-24 11:20:13 +01:00
23 lines
394 B
SCSS
23 lines
394 B
SCSS
|
|
@import '../../styles/variables';
|
||
|
|
|
||
|
|
@include nga-install-component() {
|
||
|
|
.settings-row {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
justify-content: space-between;
|
||
|
|
padding-bottom: 0.5rem;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
|
||
|
|
a {
|
||
|
|
font-size: 2rem;
|
||
|
|
margin-right: 1rem;
|
||
|
|
color: nga-theme(color-white);
|
||
|
|
|
||
|
|
&.selected {
|
||
|
|
color: nga-theme(color-success);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|