Skip to content

Commit

Permalink
fix: a styles
Browse files Browse the repository at this point in the history
  • Loading branch information
fkakatie committed Jul 30, 2024
1 parent 91f0171 commit 1fb21ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
4 changes: 0 additions & 4 deletions blocks/header/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,6 @@ header nav .nav-brand img {
height: auto;
}

header nav .nav-brand a {
text-decoration: none;
}

/* sections */
header nav .nav-sections {
grid-area: sections;
Expand Down
13 changes: 7 additions & 6 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
:root {
/* colors */
--background-color: white;
--light-color: #e1e1e1;
--dark-color: #c6c6c6;
--text-color: #292929;
--link-color: #4565F2;
--link-hover-color: #2f4de1;
--light-color: #f8f8f8;
--dark-color: #e9e9e9;
--text-color: #131313;
--link-color: #3a63fb;
--link-hover-color: #264dea;

/* fonts */
--body-font-family: roboto, roboto-fallback, sans-serif;
Expand Down Expand Up @@ -145,11 +145,12 @@ button {
/* links */
a:any-link {
color: var(--link-color);
text-decoration: underline;
text-decoration: none;
}

a:hover {
color: var(--link-hover-color);
text-decoration: underline;
}

/* buttons */
Expand Down

0 comments on commit 1fb21ab

Please sign in to comment.