f8da092f3d
This is an intermir commit to share what is going on with the development of the new /delta version.
27 lines
333 B
SCSS
27 lines
333 B
SCSS
.accountStatus {
|
|
background-color: green;
|
|
|
|
&.FULL {
|
|
display: none;
|
|
visibility: hidden;
|
|
|
|
&.isExpiring {
|
|
display: block;
|
|
visibility: visible;
|
|
|
|
background-color: yellow;
|
|
}
|
|
}
|
|
|
|
&.TRIAL {
|
|
background-color: orange;
|
|
|
|
&.isExpiring {
|
|
background-color: red;
|
|
}
|
|
}
|
|
|
|
&.EXPIRED {
|
|
background-color: red;
|
|
}
|
|
} |