diff --git a/assets/scss/styles.scss b/assets/scss/styles.scss index e681d2b92..2a5e0231c 100644 --- a/assets/scss/styles.scss +++ b/assets/scss/styles.scss @@ -46,8 +46,8 @@ body { @apply select-none; @apply overflow-x-hidden; - font-size: var(--font-size); - line-height: var(--line-height); + font-size: var(--body-font-size); + line-height: var(--body-line-height); overflow: overlay; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; @@ -189,8 +189,8 @@ input, select, textarea, button { - font-size: var(--font-size); - line-height: var(--line-height); + font-size: var(--body-font-size); + line-height: var(--body-line-height); } .input[type="file"], @@ -259,16 +259,17 @@ input[type="checkbox"] { @apply cursor-pointer; &::before { - @apply border border-secondary; + @apply border-2 border-divider; @apply rounded; @apply inline-flex; @apply items-center; @apply justify-center; @apply text-transparent; + @apply h-4; + @apply w-4; + @apply font-icon; - content: "\2714"; - height: 16px; - width: 16px; + content: "\e876"; margin: 8px 8px 8px 0; } } diff --git a/assets/scss/themes.scss b/assets/scss/themes.scss index 402141d24..c6970533c 100644 --- a/assets/scss/themes.scss +++ b/assets/scss/themes.scss @@ -300,9 +300,9 @@ @mixin fontSmall { // Font size - --font-size: 0.75rem; + --body-font-size: 0.75rem; // Line height - --line-height: 1rem; + --body-line-height: 1rem; // Upper primary sticky fold --upper-primary-sticky-fold: 4.125rem; // Upper secondary sticky fold @@ -321,9 +321,9 @@ @mixin fontMedium { // Font size - --font-size: 0.875rem; + --body-font-size: 0.875rem; // Line height - --line-height: 1.25rem; + --body-line-height: 1.25rem; // Upper primary sticky fold --upper-primary-sticky-fold: 4.375rem; // Upper secondary sticky fold @@ -342,9 +342,9 @@ @mixin fontLarge { // Font size - --font-size: 1rem; + --body-font-size: 1rem; // Line height - --line-height: 1.5rem; + --body-line-height: 1.5rem; // Upper primary sticky fold --upper-primary-sticky-fold: 4.625rem; // Upper secondary sticky fold diff --git a/components/app/Header.vue b/components/app/Header.vue index f08fab0a1..beb77e67e 100644 --- a/components/app/Header.vue +++ b/components/app/Header.vue @@ -1,7 +1,7 @@