Skip to content

Commit

Permalink
chore: fixing media query
Browse files Browse the repository at this point in the history
  • Loading branch information
zstix committed Jun 25, 2020
1 parent e7fda7f commit 1e58808
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/NavigationItems.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ button.navLink {

.currentPageIndicator {
stroke-width: 4;
@media (min-width: 760px + 1) {

@media (max-width: 760px) {
display: none;
}
}
Expand All @@ -67,6 +68,7 @@ button.navLink {
margin-right: 0.5rem;
stroke-width: 4;
transition: 0.2s;

&.isExpanded {
transform: rotate(90deg);
}
Expand All @@ -91,9 +93,11 @@ button.navLink {
ul {
display: block;
}

.nestedChevron {
transform: rotate(90deg);
}

.groupName {
margin-top: 0.5rem;
}
Expand Down

0 comments on commit 1e58808

Please sign in to comment.