Skip to content

Commit

Permalink
feat(faucet): mdd-75 added light tag styles
Browse files Browse the repository at this point in the history
  • Loading branch information
TrofimovAnton85 committed Nov 22, 2024
1 parent cbe07f1 commit 529e200
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/NavbarWallet/navbarWallet.module.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
:root[data-theme="dark"] {
--navbarWallet-color: #fff;
--tag-bg-color: #213949;
--tag-border-color: transparent;
}

:root[data-theme="light"] {
--navbarWallet-color: #141618;
--tag-bg-color: #fff;
--tag-border-color: #43AEFC;
}

:global([class*="navbarSearchContainer"]) {
Expand Down Expand Up @@ -144,7 +148,8 @@
min-width: 45px;
padding: 4px 4px 6px 4px;
margin-left: 10px;
background-color: #213949;
background-color: var(--tag-bg-color);
color: #43AEFC;
border-radius: 12px;
border: 1px solid var(--tag-border-color);
}

0 comments on commit 529e200

Please sign in to comment.