12 lines
323 B
SCSS
12 lines
323 B
SCSS
// Ref: https://github.com/nuxt-community/vuetify-module#customvariables
|
|
//
|
|
// The variables you want to modify
|
|
// $font-size-root: 20px;
|
|
|
|
@use "sass:map";
|
|
@import '~vuetify/src/styles/styles.sass';
|
|
|
|
.v-card {
|
|
border-radius: map.get($rounded, "lg") !important;
|
|
box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 20%) !important;
|
|
} |