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
|
|
|
|
2025-03-18 14:03:07 +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 {
|
2025-03-18 14:03:07 +00:00
|
|
|
box-shadow: inset 0 0 5px grey;
|
2025-01-13 23:37:31 +00:00
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle */
|
|
|
|
::-webkit-scrollbar-thumb {
|
2025-03-18 14:03:07 +00:00
|
|
|
background: darkgrey;
|
2025-01-13 23:37:31 +00:00
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle on hover */
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
2025-03-18 14:03:07 +00:00
|
|
|
background: rgb(122, 122, 122);
|
2025-01-13 23:37:31 +00:00
|
|
|
}
|