mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2024-11-14 07:59:02 +01:00
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;
|
|
}
|
|
} |