Skip to content

Commit

Permalink
feat(ui): menu background to red
Browse files Browse the repository at this point in the history
  • Loading branch information
RaneHyv committed Feb 6, 2024
1 parent 13af63c commit e81ece0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions frontend/theme/extras/header.less
Original file line number Diff line number Diff line change
Expand Up @@ -261,14 +261,14 @@ nav.navigation {
display: inline-block;
padding-right: 2em;
padding-left: 10px;
color: #000 !important;
color: #fff !important;
font-size: 24px;
font-weight: 700;
line-height: 1.2;
text-decoration: none !important;

&.active {
color: #fff !important;
color: #000 !important;
}

span {
Expand Down Expand Up @@ -334,7 +334,7 @@ nav.navigation {
.ui.dropdown {
& > .text,
& > .dropdown.icon {
color: #000;
color: #fff;
font-size: 25px;
font-weight: 600;
}
Expand All @@ -349,7 +349,7 @@ nav.navigation {
margin-top: 1rem;

a {
color: #000 !important;
color: #fff !important;
font-size: 25px;
font-weight: 600;
}
Expand Down Expand Up @@ -390,7 +390,7 @@ nav.navigation {
border-bottom: 2px solid transparent;
border-left: 0;
background: none;
color: #000;
color: #fff;
cursor: pointer;
font-size: 20px;
font-weight: 600;
Expand All @@ -403,7 +403,7 @@ nav.navigation {
svg {
width: 40px;
height: 40px;
fill: #000 !important;
fill: #fff !important;
}
}

Expand All @@ -416,14 +416,14 @@ nav.navigation {
input {
width: 0 !important;
padding: 3px;
color: #000;
color: #fff;
cursor: pointer;
font-size: 20px;
font-weight: 600;
transition: width 0.4s cubic-bezier(0, 0.795, 0, 1);

&::placeholder {
color: #000;
color: #fff;
font-weight: 600;
}
}
Expand All @@ -432,7 +432,7 @@ nav.navigation {
&.visible,
&:focus,
&:focus-within {
border-bottom: 2px solid #000 !important;
border-bottom: 2px solid #fff !important;

.ui.input {
max-width: 100%;
Expand All @@ -451,7 +451,7 @@ nav.navigation {
.mobile-menu {
display: none;
padding-top: 0;
background-color: @theme-color-green;
background-color: @theme-color-red;
color: #fff;

.mobile-menu-nav {
Expand Down
2 changes: 1 addition & 1 deletion frontend/theme/globals/site.variables
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
@theme-color-yellow: #ffe600;
@theme-color-dark-yellow: #ffe600;
@theme-color-dark-red: #9a161e;
@theme-color-red: #d2232a;
@theme-color-red: #df0934;
@theme-color-light-purple: #9789a5;
@theme-color-purple: #92278f;
@theme-color-green: #2da55d;
Expand Down

0 comments on commit e81ece0

Please sign in to comment.