Skip to content

Commit

Permalink
Issue-51: Resolve stylelint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DevLab2425 committed Oct 21, 2024
1 parent 6cd4804 commit 71a56b2
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 21 deletions.
4 changes: 2 additions & 2 deletions src/components/capabilities/capabilities.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
border: 2px dotted var(--color-accent);
}

.section:hover strong,
.active strong {
.active strong,
.section:hover strong {
font-family: var(--font-primary-bold);
color: var(--color-white);
}
Expand Down
9 changes: 7 additions & 2 deletions src/components/header/header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@
color: var(--color-black);
}

.mobileMenuListItem a {
color: var(--color-black);
text-decoration: none;
}

.navBarMenuItem a:hover {
text-decoration: underline;
}
Expand Down Expand Up @@ -108,10 +113,10 @@
font-size: var(--font-size-5);
}

.mobileMenuListItem a {
/* .mobileMenuListItem a {
color: var(--color-black);
text-decoration: none;
}
} */

@media screen and (min-width: 480px) {
.container {
Expand Down
31 changes: 14 additions & 17 deletions src/components/side-nav/side-nav.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
color: var(--color-black);
text-decoration: none;
}

& a:hover {
opacity: 0.7;
}
}

.compactMenuCloseButton {
Expand Down Expand Up @@ -54,6 +50,19 @@
height: auto;
}

.compactMenuSectionListItemActive {
& a {
border-left: var(--size-1) solid black;
border-radius: var(--radius-2);
background-color: white;
padding: 0 var(--size-2);
min-width: 200px;
display: inline-block;
box-shadow: var(--shadow-3);
margin-left: -16px;
}
}

.compactMenuSectionHeading {
margin: 0 0 var(--size-2) 0;

Expand All @@ -64,6 +73,7 @@
& a.active,
& a:hover {
text-decoration: underline;
opacity: 0.7;
}

& a.active::before {
Expand All @@ -80,19 +90,6 @@
}
}

.compactMenuSectionListItemActive {
& a {
border-left: var(--size-1) solid black;
border-radius: var(--radius-2);
background-color: white;
padding: 0 var(--size-2);
min-width: 200px;
display: inline-block;
box-shadow: var(--shadow-3);
margin-left: -16px;
}
}

.compactMenuSectionListItem {
margin: var(--size-1);
}
Expand Down

0 comments on commit 71a56b2

Please sign in to comment.