14 lines
213 B
SCSS
14 lines
213 B
SCSS
|
@import 'colors';
|
||
|
|
||
|
tpl-item{
|
||
|
&.notActive {
|
||
|
background-color: $main-bg;
|
||
|
color: $secondary-font-color;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
& > .inactive {
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
}
|