mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2025-02-11 12:43:41 +01:00
![Giulio Cesare Solaroli](/assets/img/avatar_default.png)
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;
|
|
}
|
|
} |