Skip to content

Commit

Permalink
fix(placement): reuse TextColor/BackgroundColor for "AD" link (#11540)
Browse files Browse the repository at this point in the history
  • Loading branch information
caugner authored Jul 26, 2024
1 parent 6ca9a43 commit 16a6717
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions client/src/ui/organisms/placement/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@ section.place {
width: 11rem;

.pong-note {
background-color: #fff6;
border: 1px solid #111a;
background-color: var(--place-new-side-color);
border: 1px solid var(--place-new-side-background);
border-radius: 0.25rem;
color: #fff;
color: var(--place-new-side-background);
font-size: 0.625rem;
margin: 0.5rem;
opacity: 0.4;
padding: 0 0.25rem;
position: absolute;
right: 0;
text-decoration: none;
text-decoration: underline;
text-transform: uppercase;
top: 0;
width: max-content;

&:hover {
background-color: #fff;
color: #111;
opacity: unset;
text-decoration: none;
}
}

Expand Down

0 comments on commit 16a6717

Please sign in to comment.