mirror of
https://github.com/bitwarden/desktop
synced 2026-01-09 12:03:14 +00:00
66 lines
1.1 KiB
SCSS
66 lines
1.1 KiB
SCSS
@import "variables.scss";
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
background-color: $background-color;
|
|
overflow: hidden;
|
|
font-family: $font-family-sans-serif;
|
|
font-size: $font-size-base;
|
|
color: $text-color;
|
|
line-height: 1.42857143;
|
|
}
|
|
|
|
body {
|
|
border-top: 1px solid $border-color-dark;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: $font-family-sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a {
|
|
color: $brand-primary;
|
|
text-decoration: none;
|
|
}
|
|
|
|
input, select, textarea, button {
|
|
font-size: $font-size-base;
|
|
font-family: $font-family-sans-serif;
|
|
}
|
|
|
|
button {
|
|
padding: 0;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
div:not(.modal)::-webkit-scrollbar {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
div:not(.modal)::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
div:not(.modal)::-webkit-scrollbar-thumb {
|
|
background-color: rgba(100,100,100,.2);
|
|
border-radius: 10px;
|
|
margin-right: 1px;
|
|
|
|
&:hover {
|
|
background-color: rgba(100,100,100,.4);
|
|
}
|
|
}
|