2024-07-06 01:01:52 +00:00
|
|
|
/* You can add global styles to this file, and also import other style files */
|
2024-10-17 08:48:15 +00:00
|
|
|
|
|
|
|
html, body { height: 100%; }
|
|
|
|
body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; }
|
2025-01-13 23:37:31 +00:00
|
|
|
|
|
|
|
.mat-mdc-dialog-surface {
|
|
|
|
background-color: transparent !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* width */
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Track */
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
box-shadow: inset 0 0 5px grey;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle */
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: darkgrey;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle on hover */
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background: rgb(122, 122, 122);
|
|
|
|
}
|