Change main theme colors

This commit is contained in:
2023-04-20 21:03:41 +02:00
parent c1e990e4ee
commit a3d86dda60
2 changed files with 35 additions and 15 deletions

View File

@@ -1,4 +1,23 @@
// Ref: https://github.com/nuxt-community/vuetify-module#customvariables
//
// The variables you want to modify
// $font-size-root: 20px;
// $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));
}
}