Skip to content

Commit

Permalink
fix: add hover and focus states to home logo link
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueSlug committed May 4, 2022
1 parent a94c80c commit 6c759ea
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion src/assets/styles/components/_brand.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,35 @@

.brand__desktop {
display: none;
margin-block-end: 1.875rem;
margin-block-start: 2.5rem;
padding: 0.75rem;



svg {
height: 5.4rem;
}
}

.brand__mobile {
display: inline-block;
margin-block: 1.5rem;

svg {
height: 5rem;
margin-block: 1.5rem;
width: 5rem;
}
}

.brand__desktop,
.brand__mobile {
&:focus,
&:hover {
outline: solid 0.3125rem $darkRed;
}
}

@include breakpoint-up(md) {
.brand__desktop {
display: inline-block;
Expand Down

0 comments on commit 6c759ea

Please sign in to comment.