diff --git a/assets/scss/core/layout-grid.scss b/assets/scss/core/layout-grid.scss index 3ba8d1e..bb51c5b 100644 --- a/assets/scss/core/layout-grid.scss +++ b/assets/scss/core/layout-grid.scss @@ -12,12 +12,14 @@ .layout { position: relative; z-index: 100; + overflow-x: hidden; } [class~="grid"], [class*="grid-"], [class*="grid_"] { width: $gridWidth; margin: 0 auto; @include gridMaxMQ { + width: 100%; padding: 0 4.1665%; } &[class*="-noGutter"] { diff --git a/assets/scss/theme/typography.scss b/assets/scss/theme/typography.scss index a0f52a4..3eb58f8 100644 --- a/assets/scss/theme/typography.scss +++ b/assets/scss/theme/typography.scss @@ -80,12 +80,16 @@ $fontAssetPath: 'assets/fonts'; line-height: leading(65, 48); font-weight: 500; letter-spacing: 0.03em; - @include small { - font-size: toRem(30); - line-height: leading(43, 30); + @include medium { + font-size: toRem(36); + line-height: leading(48, 36); font-weight: 500; letter-spacing: 0.03em; } + @include mini { + font-size: toRem(30); + line-height: leading(43, 30); + } } @mixin h2 { // Roadmap headings @@ -93,7 +97,7 @@ $fontAssetPath: 'assets/fonts'; line-height: leading(34, 26); font-weight: 500; letter-spacing: 0.03em; - @include small { + @include medium { font-size: toRem(20); line-height: leading(30, 20); font-weight: 500; @@ -106,12 +110,16 @@ $fontAssetPath: 'assets/fonts'; line-height: leading(30, 24); font-weight: 500; letter-spacing: 0.03em; - @include small { - font-size: toRem(16); - line-height: leading(27, 16); + @include medium { + font-size: toRem(18); + line-height: leading(27, 18); font-weight: 500; letter-spacing: 0.03em; } + @include mini { + font-size: toRem(16); + line-height: leading(27, 16); + } } @mixin h4 { // Roadmap milestone headings, captions for stats in hero section @@ -119,7 +127,7 @@ $fontAssetPath: 'assets/fonts'; line-height: leading(30, 16); font-weight: 500; letter-spacing: 0.03em; - @include small { + @include medium { font-size: toRem(14); line-height: leading(16, 14); font-weight: 500; @@ -132,7 +140,7 @@ $fontAssetPath: 'assets/fonts'; line-height: leading(19, 16); font-weight: 500; letter-spacing: 0.11em; - @include small { + @include medium { font-size: toRem(14); line-height: leading(16, 14); font-weight: 500; @@ -199,7 +207,7 @@ $fontAssetPath: 'assets/fonts'; line-height: leading(27, 16); font-weight: 500; letter-spacing: 0.03em; - @include small { + @include medium { font-size: toRem(14); line-height: leading(21, 14); font-weight: 600; diff --git a/components/blocks/accordion-block.vue b/components/blocks/accordion-block.vue index 67afdbd..abf82ff 100644 --- a/components/blocks/accordion-block.vue +++ b/components/blocks/accordion-block.vue @@ -161,6 +161,12 @@ const getIconComponent = (icon) => { &.open { .accordion-content { max-height: toRem(200); + @include large { + max-height: toRem(228); + } + @include medium { + max-height: toRem(300); + } } } &.open, diff --git a/components/blocks/card-list-block.vue b/components/blocks/card-list-block.vue index ca7eecc..cd09310 100644 --- a/components/blocks/card-list-block.vue +++ b/components/blocks/card-list-block.vue @@ -1,10 +1,10 @@