Skip to content

Commit

Permalink
Fix header nav styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclarke committed Nov 3, 2023
1 parent 45dcbe0 commit e89a5e1
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions shared/studio/components/headerNav/headerNav.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
transform: translateY(-20px);
transition: opacity 0.15s, transform 0.15s;
background-color: var(--grey25);
color: var(--grey85);
border-radius: 6px;
overflow: hidden;
min-height: 240px;
Expand All @@ -87,6 +88,7 @@

@include darkTheme {
background-color: var(--grey70);
color: var(--grey8);
}

@include isMobile {
Expand Down Expand Up @@ -124,11 +126,6 @@
padding-top: 12px;
text-transform: uppercase;
font-size: 12px;
color: var(--grey85);

@include darkTheme {
color: var(--grey8);
}
}

.item,
Expand All @@ -140,8 +137,8 @@
text-decoration: none;
padding: 9px 18px;
line-height: 24px;
color: var(--grey85);
font-weight: 600;
color: inherit;

@include isMobile {
padding: 12px 18px;
Expand All @@ -152,10 +149,6 @@
text-overflow: ellipsis;
overflow: hidden;
}

@include darkTheme {
color: var(--grey8);
}
}

.item > span {
Expand All @@ -181,7 +174,6 @@
.action {
margin: 6px 8px;
padding: 7px 10px;
color: var(--grey85);
justify-content: center;
border: 1px solid var(--grey40);
border-radius: 4px;
Expand All @@ -197,7 +189,6 @@
}

@include darkTheme {
color: var(--grey8);
border-color: var(--grey60);

&:hover {
Expand Down

0 comments on commit e89a5e1

Please sign in to comment.