targo-frontend/src/css/app.scss
Nicolas Drolet ac6744ff18 refactor(timesheet): rework appearance and functionality
removed modal for shift creation/update to better match current timesheet app and avoid adding superfluous user actions. Tweaked appearance of timesheet and overall theme to remove overcrowding of colors/elements
2025-11-07 17:02:54 -05:00

56 lines
895 B
SCSS

// app global css in SCSS form
@each $size in (1, 2, 3, 4, 5, 10, 15, 20, 25, 50, 75, 100, 200) {
.rounded-#{$size} {
border-radius: #{$size}px !important;
}
}
.text-fb-blue {
color: #4267B2 !important;
}
.bg-fb-blue {
background: #4267B2 !important;
}
.text-authentik-orange {
color: #fd4b2d !important;
}
.bg-authentik-orange {
background: #fd4b2d !important;
}
.q-table tbody tr:hover {
background: #00ff260c;
}
body.body--dark {
--q-secondary: #151520;
color: $grey-2;
}
.body--light {
--q-dark: #FFF;
color: $blue-grey-8;
}
.shift-highlight {
background: #0195462a;
}
.frosted-glass {
background-color: #FFFA !important;
backdrop-filter: blur(5px);
}
.q-btn--push::before {
border-bottom: 4px solid rgba(0,0,0, 0.25);
}
.q-btn--push:active {
transform: translateY(3px);
}
.q-btn--push:active::before {
border-bottom-width: 1px;
}