interface/src/assets/styles/settings.scss
2024-07-04 04:20:19 +07:00

83 lines
2.2 KiB
SCSS

/**
* src/styles/settings.scss
*
* Configures SASS variables and Vuetify overwrites
*/
// https://vuetifyjs.com/features/sass-variables/`
@use 'vuetify/settings' with ( // $color-pack: false
$card-item-padding: .625rem 0,
$selection-control-size: 25px,
$utilities: ("align-content": false,
"align-items": false,
"align-self": false,
"border-bottom": false,
"border-end": false,
"border-opacity": false,
"border-start": false,
"border-style": false,
"border-top": false,
"border": false,
"display": false,
"flex-direction": false,
"flex-grow": false,
"flex-shrink": false,
"flex-wrap": false,
"flex": false,
"float-ltr": false,
"float-rtl": false,
"float": false,
"font-italic": false,
"font-weight": false,
"justify-content": false,
"margin-bottom": false,
"margin-end": false,
"margin-left": false,
"margin-right": false,
"margin-start": false,
"margin-top": false,
"margin-x": false,
"margin-y": false,
"margin": false,
"negative-margin-bottom": false,
"negative-margin-end": false,
"negative-margin-left": false,
"negative-margin-right": false,
"negative-margin-start": false,
"negative-margin-top": false,
"negative-margin-x": false,
"negative-margin-y": false,
"negative-margin": false,
"order": false,
"overflow-wrap": false,
"overflow-x": false,
"overflow-y": false,
"overflow": false,
"padding-bottom": false,
"padding-end": false,
"padding-left": false,
"padding-right": false,
"padding-start": false,
"padding-top": false,
"padding-x": false,
"padding-y": false,
"padding": false,
// "rounded-bottom-end": false,
// "rounded-bottom-start": false,
// "rounded-bottom": false,
// "rounded-end": false,
// "rounded-start": false,
// "rounded-top-end": false,
// "rounded-top-start": false,
// "rounded-top": false,
// "rounded": false,
"text-align": false,
"text-decoration": false,
"text-mono": false,
"text-opacity": false,
"text-overflow": false,
"text-transform": false,
// "typography": false,
"white-space": false,
),
);