Skip to content

Commit

Permalink
Remove duplicate CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
wa-rren-dev committed Oct 11, 2021
1 parent a7ebf1c commit 7ee2d0c
Showing 1 changed file with 0 additions and 64 deletions.
64 changes: 0 additions & 64 deletions src/Header/Nav/Dropdown/Components/Components.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}

0 comments on commit 7ee2d0c

Please sign in to comment.