File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -348,7 +348,8 @@ const emit = defineEmits<{
348348 </script >
349349
350350<style scoped lang="scss">
351- @import " vuetify/lib/styles/settings/variables" ;
351+ @use " vuetify/lib/styles/settings/variables" ;
352+ @use " sass:map" ;
352353
353354.c-card {
354355 & .c-card--variant--bottom-sheet {
@@ -365,11 +366,11 @@ const emit = defineEmits<{
365366 .v-card-title.large {
366367 line-height : normal ;
367368
368- @media (max-width : map- get ($grid-breakpoints , " md" )) {
369+ @media (max-width : map . get (variables . $grid-breakpoints , " md" )) {
369370 font-size : 26px !important ;
370371 }
371372
372- @media (min-width : map- get ($grid-breakpoints , " md" )) {
373+ @media (min-width : map . get (variables . $grid-breakpoints , " md" )) {
373374 font-size : 30px !important ;
374375 }
375376 }
You can’t perform that action at this time.
0 commit comments