You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
805 B
SCSS
45 lines
805 B
SCSS
@import "colors";
|
|
|
|
.mat-form-field.mat-focused .mat-form-field-label {
|
|
color: $primary-lighter-30;
|
|
}
|
|
|
|
.mat-input-element {
|
|
caret-color: $primary-lighter-20;
|
|
}
|
|
|
|
.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
color: $primary-lighter-20;
|
|
}
|
|
|
|
.mat-dialog-container {
|
|
background: $background;
|
|
}
|
|
|
|
.mat-drawer {
|
|
background: $background;
|
|
}
|
|
|
|
.mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {
|
|
background: $background;
|
|
}
|
|
|
|
// scrollbar
|
|
|
|
::-webkit-scrollbar {
|
|
width: 15px;
|
|
height: 15px;
|
|
background: $background-darker-05;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: $primary-darker-10;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: $primary;
|
|
border-radius: 5px;
|
|
}
|