Skip to content

Commit

Permalink
Fixed contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksii-Mishchenko committed Apr 8, 2024
1 parent 2f64f94 commit d347e52
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions src/components/Contacts/contacts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,27 @@
margin-bottom: 8px;

&-link {
border-bottom: 2px solid $color-lemon;
color: $color-white;
text-decoration: underline $color-lemon 2px;
text-underline-offset: 4px;
transition: all 0.3s;

&:hover {
border-bottom-color: $color-white;
color: $color-lemon;
}

@include on-wide-screen {
text-underline-offset: 7px;
border-bottom-width: 3px;
}

@include on-light-theme {
border-bottom-color: $color-grey-intense;
color: $color-black;

&:hover {
border-bottom-color: $color-lemon;
color: $color-grey-intense;
}
}
}
}
Expand Down

0 comments on commit d347e52

Please sign in to comment.