keanu-weblite/src/assets/css/_utilities.scss
N-Pex b1d47748c8 Use SASS module system
Get rid of all the SASS warnings/errors when building.
2025-05-19 10:25:46 +02:00

42 lines
557 B
SCSS

@use "@/assets/css/variables" as *;
.cursor-pointer {
cursor: pointer !important;
}
.cursor-default {
cursor: default !important;
}
.cursor-text {
cursor: text !important;
}
.text-transform-0 {
text-transform: none;
}
.mt-40 {
margin-top: 40px;
}
.w-100 {
width: 100%;
}
.h-100 {
height: 100%;
}
.white-space-pre {
white-space: pre;
}
.v-visible {
visibility: visible;
}
.v-hidden {
visibility: hidden;
}
.alert-bg {
background-color: $alert-bg-color;
}
.box-shadow-none {
box-shadow: none !important;
}