Fix scrollbar background

Signed-off-by: trivernis <trivernis@protonmail.com>
pull/4/head
trivernis 3 years ago
parent 309995db24
commit e8bfd8b710

@ -1581,7 +1581,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "mediarepo-api"
version = "0.1.0"
source = "git+https://github.com/Trivernis/mediarepo-api.git?rev=a2154fd1db3f14648935e872d30b043723a812c1#a2154fd1db3f14648935e872d30b043723a812c1"
source = "git+https://github.com/Trivernis/mediarepo-api.git?rev=c366f6a8ecc337790a0b5ebb18bb36267279ade8#c366f6a8ecc337790a0b5ebb18bb36267279ade8"
dependencies = [
"async-trait",
"chrono",

@ -30,7 +30,7 @@ features = ["env-filter"]
[dependencies.mediarepo-api]
git = "https://github.com/Trivernis/mediarepo-api.git"
rev = "a2154fd1db3f14648935e872d30b043723a812c1"
rev = "c366f6a8ecc337790a0b5ebb18bb36267279ade8"
features = ["tauri-plugin"]
[features]

@ -1,31 +0,0 @@
@use 'sass:map';
@use '~@angular/material' as mat;
@mixin color($theme) {
$color: #0d071b;
$color-lighter: desaturate(lighten($color, 5), 5);
.mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn, .mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab, .mat-drawer-inner-container, .mat-drawer-content {
background-color: $color;
}
.mat-card {
background-color: $color-lighter;
}
}
@mixin typography($theme) {
// Get the typography config from the theme.
$typography-config: mat.get-typography-config($theme);
}
@mixin theme($theme) {
$color-config: mat.get-color-config($theme);
@if $color-config != null {
@include color($theme);
}
$typography-config: mat.get-typography-config($theme);
@if $typography-config != null {
@include typography($theme);
}
}

@ -13,7 +13,7 @@
::ng-deep ::-webkit-scrollbar {
width: 15px;
height: 15px;
background: #303030;
background: #272727;
}
::ng-deep ::-webkit-scrollbar-thumb {

Loading…
Cancel
Save