Skip to content

Commit

Permalink
fix(extension): fix overflow on x-axis scroll in the smallest screens
Browse files Browse the repository at this point in the history
  • Loading branch information
jplorek-atix committed Jun 2, 2023
1 parent 9653972 commit 07c8bce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -21,7 +21,7 @@ $aside-width-large: 420px;
display: flex;
flex-direction: column;
justify-content: space-between;

padding-left: size_unit(1);
@media (min-width: $breakpoint-small) {
margin-top: 120px;
}
Expand Down
Expand Up @@ -15,10 +15,10 @@ $navigation-col-width: 215px;
padding: 0 24px;
background-color: var(--bg-color-body);
pointer-events: none;
z-index: 100;

&:hover {
box-shadow: var(--bg-color-body) 18px 0px 32px 12px;
z-index: 100;
&.shadowNone {
box-shadow: none;
}
Expand Down

0 comments on commit 07c8bce

Please sign in to comment.