From 7ee2d0cf45801420a74e44f1977e6b48dab3e6f1 Mon Sep 17 00:00:00 2001 From: "w@rren" Date: Mon, 11 Oct 2021 16:06:30 +0100 Subject: [PATCH] Remove duplicate CSS --- .../Components/Components.module.scss | 64 ------------------- 1 file changed, 64 deletions(-) diff --git a/src/Header/Nav/Dropdown/Components/Components.module.scss b/src/Header/Nav/Dropdown/Components/Components.module.scss index 88d79204..3e6d49d0 100644 --- a/src/Header/Nav/Dropdown/Components/Components.module.scss +++ b/src/Header/Nav/Dropdown/Components/Components.module.scss @@ -97,67 +97,3 @@ html body button.btn { } } } - -.alphabet { - list-style: none; - margin: rem(0 0 $nds-spacing-large); - padding: 0; - - &:focus { - outline: none; - } - - @supports (display: grid) { - column-gap: rem($nds-spacing-small); - display: grid; - grid-template-columns: repeat(auto-fit, minmax(4ch, 1fr)); - max-width: 100%; - row-gap: rem($nds-spacing-small); - - @include mq($from: md) { - grid-template-columns: repeat(auto-fit, minmax(6ch, 1fr)); - } - } -} - -.chunkyLetter { - @include nds-font-size(h4); - color: $nds-colour-nice-dark-grey; - - span { - width: 4.95ch; - } -} - -.letter { - display: inline-block; - font-weight: bold; - margin: rem(0 $nds-spacing-small $nds-spacing-small 0); - - a, - span { - display: block; - padding: rem($nds-spacing-small 0); - text-align: center; - width: 3.95ch; - } - - a { - background: $nds-colour-true-white; - border: 1px solid $nds-colour-border; - text-decoration: none; - - &:hover { - text-decoration: underline; - } - } - - @supports (display: grid) { - margin: 0; - - a, - span { - width: auto; - } - } -}