Skip to content

Commit

Permalink
feat: align sidebar backdrop with modal
Browse files Browse the repository at this point in the history
  • Loading branch information
royschut committed Feb 28, 2024
1 parent 521d273 commit f4d3e01
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/ui-react/src/components/Sidebar/Sidebar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
display: none;
width: 100%;
height: 100%;
background: rgba(variables.$black, 0.4);
background: theme.$modal-backdrop-bg;
transition: all 0.3s ease;
}

Expand Down Expand Up @@ -72,9 +72,11 @@
.backdrop {
display: inline-block;
visibility: hidden;
opacity: 0;

&.visible {
visibility: visible;
opacity: 1;
}
}
}

0 comments on commit f4d3e01

Please sign in to comment.