Skip to content

Commit

Permalink
Revert some Glocal changes with RGBA variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
maxxcrawford committed Aug 3, 2021
1 parent 4b1f467 commit b7e6d71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions static/scss/partials/glocal-menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ glocal-menu {
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 0 2px $color-white, 0 0 0px 5px $color-black;
box-shadow: 0 0 0 2px rgba(255, 255, 255, 1), 0 0 0px 5px rgba(255, 255, 255, 0);
padding: 0;
border: none;
transition: all 0.2s ease;
}

.avatar-wrapper:hover {
box-shadow: 0 0 0 2px $color-white, 0 0 0px 5px rgba(255, 255, 255, .3);
box-shadow: 0 0 0 2px rgba(255, 255, 255, 1), 0 0 0px 5px rgba(255, 255, 255, .3);
transition: all 0.2s ease;
}

Expand Down Expand Up @@ -131,7 +131,7 @@ glocal-menu {
border-radius: 0;
padding: 2px var(--glocalPaddingUnit);
width: 100%;
background-color: $color-black;
background-color: rgba(255, 255, 255, 0);
transition: 0.2s ease-in-out;
}

Expand Down

0 comments on commit b7e6d71

Please sign in to comment.