Skip to content

Commit

Permalink
fix: reduced cls
Browse files Browse the repository at this point in the history
  • Loading branch information
demtario committed Feb 8, 2024
1 parent 459b29a commit 67ef1b5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions components/base/CookiesBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ const visibleTab = ref('required')
z-index: 10000;
padding: 24px 12px 280px;
overflow: auto;
// --text-font-family: Arial, Helvetica, sans-serif;
// font-family: Arial, Helvetica, sans-serif;
@media ($viewport-8) {
height: auto;
Expand All @@ -223,11 +225,13 @@ const visibleTab = ref('required')
&__text {
display: block;
font-size: rem(13);
line-height: rem(20);
margin-bottom: 14px;
&--bold {
font-weight: bold;
font-size: rem(15);
line-height: rem(20);
}
}
Expand Down Expand Up @@ -296,6 +300,7 @@ const visibleTab = ref('required')
background-color: $transparent;
font-family: var(--text-font-family, $textFont);
font-size: rem(14);
line-height: rem(18);
font-weight: 500;
text-align: left;
transition: 200ms ease-in-out;
Expand Down
1 change: 1 addition & 0 deletions components/base/FooterSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<button
class="footer-section__title"
:name="`${isOpen ? t('close') : t('open')} ${props.title}`"
:aria-label="`${isOpen ? t('close') : t('open')} ${props.title}`"
@click="isOpen = !isOpen"
>
{{ props.title }}
Expand Down
1 change: 1 addition & 0 deletions components/layout/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const textColorThemePrimary = useContrastColorFromCssVar('primary-color-alt')
outline: none;
border: none;
padding: 8px 16px;
height: 37px;
border-radius: 4px;
font-family: var(--text-font-family, $textFont);
font-size: rem(14);
Expand Down
1 change: 1 addition & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ export default defineNuxtConfig({
googleFonts: {
base64: true,
overwriting: true,
display: 'swap',
families: {
[FONT_FAMILY]: [400, 500, 600, 700],
},
Expand Down

0 comments on commit 67ef1b5

Please sign in to comment.