Skip to content

Commit

Permalink
style: npm run prettier:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Dec 4, 2024
1 parent d6f820b commit 2840e42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
.data-files-sidebar {
.dropdown-menu {
/* To make menu wider than button yet still centered */
width: calc(
100% + var(--global-space--section-left)
);
width: calc(100% + var(--global-space--section-left));
left: calc(
var(--global-space--section-left) / -2
) !important; /* to override `inset` from Popper via Reactstrap */
Expand Down
4 changes: 2 additions & 2 deletions client/src/styles/components/dropdown-menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ Styleguide Components.Dropdown
content: '';
}
.dropdown-menu::before {
top: calc( var(--arrow-size) * -1 );
top: calc(var(--arrow-size) * -1);
}
.dropdown-menu::after {
top: calc(( var(--arrow-size) - var(--border-width)) * -1 );
top: calc(( var(--arrow-size) - var(--border-width)) * -1);
border-bottom-color: var(--global-color-primary--xx-light);
}

Expand Down

0 comments on commit 2840e42

Please sign in to comment.