Skip to content

Commit

Permalink
fix(popup): remove pointless global
Browse files Browse the repository at this point in the history
  • Loading branch information
vladjerca authored and seferturan committed Feb 12, 2025
1 parent 9b9b997 commit 1a6fa69
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
}
}
:global(.trakt-popup-menu-container) {
.trakt-popup-menu-container {
--list-padding: var(--ni-8);
z-index: var(--layer-menu);
Expand Down Expand Up @@ -129,21 +129,21 @@
color: var(--purple-900);
}
&[data-popup-direction="left"] {
:global(.trakt-popup-menu-button-placeholder) {
&:global([data-popup-direction="left"]) {
.trakt-popup-menu-button-placeholder {
right: 0;
left: auto;
}
}
&[data-popup-direction="unaligned"] {
:global(.trakt-popup-menu-button-placeholder) {
&:global([data-popup-direction="unaligned"]) {
.trakt-popup-menu-button-placeholder {
display: none;
}
}
&.removing {
:global(.trakt-popup-menu-button-placeholder) {
&:global(.removing) {
.trakt-popup-menu-button-placeholder {
transform: rotate(0deg);
}
}
Expand Down

0 comments on commit 1a6fa69

Please sign in to comment.