mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-16 15:17:36 +08:00
43 lines
858 B
SCSS
43 lines
858 B
SCSS
// Write your overrides
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
#nprogress .bar {
|
|
background: #7D34FD !important;
|
|
top: env(safe-area-inset-top) !important;
|
|
}
|
|
|
|
#nprogress .peg {
|
|
box-shadow: 0 0 10px #7D34FD, 0 0 5px #7D34FD !important;
|
|
-webkit-transform: rotate(0deg) translate(0px, -1px);
|
|
-ms-transform: rotate(0deg) translate(0px, -1px);
|
|
transform: rotate(0deg) translate(0px, -1px);
|
|
}
|
|
|
|
.v-toast--bottom {
|
|
margin-bottom: env(safe-area-inset-top);
|
|
}
|
|
|
|
|
|
.centered {
|
|
position: absolute;
|
|
inset-block-start: 50%;
|
|
inset-inline-start: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
|
|
.top-centered {
|
|
position: absolute;
|
|
inset-block-start: 20%;
|
|
inset-inline-start: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.v-overlay__content {
|
|
margin-top: env(safe-area-inset-top);
|
|
margin-bottom: env(safe-area-inset-bottom);
|
|
}
|