mirror of
https://github.com/Rakantor/personal-portfolio.git
synced 2025-12-17 19:36:32 +01:00
24 lines
483 B
SCSS
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));
|
|
}
|
|
}
|