Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
fix: thequick theme
Browse files Browse the repository at this point in the history
  • Loading branch information
villetakanen committed Dec 15, 2021
1 parent 0c8df7e commit b6f35c8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/styles/base.sass
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
@import formcontrols.sass
@import themes/themeable.sass
@import themes/themeDD.sass
@import themes/themeQuick.sass

// *** Spacing ********************************************************
:root
Expand Down
4 changes: 4 additions & 0 deletions src/styles/themes/themeQuick.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.themeQuick
--theme-color-headers: #333
--theme-font-headers: 'Lato', 'Overpass', sans-serif
--theme-text-transform: uppercase
1 change: 1 addition & 0 deletions src/styles/themes/themeable.sass
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
h1, h2, h3, h4, h5, h6
color: var(--theme-color-headers)
font-family: var(--theme-font-headers)
text-transform: var(--theme-text-transform)
a
color: var(--theme-color-headers-link)
1 change: 1 addition & 0 deletions src/views/site/ViewPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
class="double themeable"
:class="{
themeDD: site.theme.name === 'dd',
themeQuick: site.theme.name === 'quick',
}"
>
<transition name="fade">
Expand Down

0 comments on commit b6f35c8

Please sign in to comment.