mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
stub out theme styling
This commit is contained in:
@@ -14,12 +14,17 @@
|
||||
}
|
||||
|
||||
> #groupings {
|
||||
background-color: $background-color-alt;
|
||||
width: 22%;
|
||||
min-width: 175px;
|
||||
max-width: 250px;
|
||||
background-color: $background-color-alt;
|
||||
border-right: 1px solid $border-color-dark;
|
||||
|
||||
@include themify($themes) {
|
||||
background-color: themed('backgroundColorAlt');
|
||||
border-right-color: themed('borderColorDark');
|
||||
}
|
||||
|
||||
.inner-content {
|
||||
padding-bottom: 0;
|
||||
padding-right: 5px;
|
||||
@@ -111,11 +116,16 @@
|
||||
}
|
||||
|
||||
> #items {
|
||||
background-color: $background-color;
|
||||
width: 28%;
|
||||
min-width: 200px;
|
||||
max-width: 350px;
|
||||
background-color: $background-color;
|
||||
border-right: 1px solid $border-color-dark;
|
||||
|
||||
@include themify($themes) {
|
||||
background-color: themed('backgroundColor');
|
||||
border-right-color: themed('borderColorDark');
|
||||
}
|
||||
|
||||
.no-items {
|
||||
display: flex;
|
||||
@@ -134,9 +144,13 @@
|
||||
}
|
||||
|
||||
> #details {
|
||||
background-color: $background-color-alt2;
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
background-color: $background-color-alt2;
|
||||
|
||||
@include themify($themes) {
|
||||
background-color: themed('backgroundColorAlt2');
|
||||
}
|
||||
|
||||
.inner-content {
|
||||
min-width: 400px;
|
||||
|
||||
Reference in New Issue
Block a user