Use SASS module system

Get rid of all the SASS warnings/errors when building.
This commit is contained in:
N-Pex 2025-05-13 22:38:10 +02:00
parent b2f4f1d492
commit b1d47748c8
120 changed files with 189 additions and 157 deletions

View file

@ -161,8 +161,10 @@ export default {
</script>
<style lang="scss" scoped>
@import 'vuetify/settings';
@import '@/assets/css/variables';
@use 'vuetify/settings' as *;
@use '@/assets/css/variables' as *;
@use "sass:map";
.sheetContent {
position:absolute;
top:20px;left:0;
@ -223,7 +225,7 @@ export default {
z-index: 1;
}
@media #{map-get($display-breakpoints, 'lg-and-up')} {
@media #{map.get($display-breakpoints, 'lg-and-up')} {
margin: 0 auto;
width: $dialog-desktop-width;
}
@ -236,7 +238,7 @@ export default {
}
.bottom-sheet-content[data-state="small"] {
@media #{map-get($display-breakpoints, 'lg-and-up')} {
@media #{map.get($display-breakpoints, 'lg-and-up')} {
top: 100px !important;
}
}