mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +00:00
* [Icons] Update Font Sheet * Prettier updates * Updated refresh -> generate * Updated closed folder icon * Reverted to using a base class * Update jslib * Removed unused import * Updated eye/eye-slash icon references * Update jslib * Updating fallback image for cipher icon * Update jslib * Removed duplicate icon base class * Update jslib * Prettier Co-authored-by: Hinton <oscar@oscarhinton.com>
40 lines
526 B
SCSS
40 lines
526 B
SCSS
@import "variables.scss";
|
|
|
|
html.browser_safari {
|
|
body {
|
|
height: 360px !important;
|
|
|
|
&.body-xs {
|
|
height: 300px !important;
|
|
}
|
|
|
|
&.body-full {
|
|
height: 100% !important;
|
|
}
|
|
}
|
|
|
|
header {
|
|
.search .bwi {
|
|
left: 20px;
|
|
}
|
|
|
|
.left + .search .bwi {
|
|
left: 10px;
|
|
}
|
|
}
|
|
|
|
app-root {
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: #000000;
|
|
}
|
|
|
|
&.theme_light app-root {
|
|
border-color: #777777;
|
|
}
|
|
|
|
&.theme_nord app-root {
|
|
border-color: #2e3440;
|
|
}
|
|
}
|