Files
personal-portfolio/assets/variables.scss
2023-04-20 21:03:41 +02:00

24 lines
483 B
SCSS

// Ref: https://github.com/nuxt-community/vuetify-module#customvariables
//
// The variables you want to modify
// $font-size-root: 20px;
p a {
color: rgb(var(--v-theme-primary)) !important;
text-decoration: none !important;
&:hover {
text-decoration: underline !important;
}
}
.link {
color: inherit;
text-decoration: none;
transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
&:hover {
color: rgb(var(--v-theme-primary));
}
}