initial commit
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
/**
|
||||
* src/styles/settings.scss
|
||||
*
|
||||
* Configures SASS variables and Vuetify overwrites
|
||||
*/
|
||||
|
||||
// https://vuetifyjs.com/features/sass-variables/`
|
||||
// @use 'vuetify/settings' with (
|
||||
// $color-pack: false
|
||||
// );
|
||||
@font-face {
|
||||
font-display: swap;
|
||||
font-family: 'Vazirmatn';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('@/assets/Vazirmatn-UI-NL-Regular.woff2') format('woff2');
|
||||
unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC, U+0030-0039;
|
||||
}
|
||||
$body-font-family: "Vazirmatn";
|
||||
|
||||
$typoOptions: text-h1, text-sm-h1, text-md-h1, text-lg-h1, text-h2, text-sm-h2,
|
||||
text-md-h2, text-lg-h2, text-h3, text-sm-h3, text-md-h3, text-lg-h3, text-h4,
|
||||
text-sm-h4, text-md-h4, text-lg-h4, text-h5, text-sm-h5, text-md-h5,
|
||||
text-lg-h5, text-h6, text-sm-h6, text-md-h6, text-lg-h6, headline, title,
|
||||
subtitle-1, subtitle-2, text-body-1, text-sm-body-1, text-md-body-1,
|
||||
text-lg-body-1, text-body-2, text-sm-body-2, text-md-body-2, text-lg-body-2,
|
||||
text-caption;
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, $body-font-family, sans-serif !important;
|
||||
@each $typoOption in $typoOptions {
|
||||
.#{$typoOption} {
|
||||
font-family: -apple-system, BlinkMacSystemFont, $body-font-family, sans-serif !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.v-btn {
|
||||
letter-spacing: 0;
|
||||
}
|
||||
Reference in New Issue
Block a user