Skip to content

Commit 529e200

Browse files
feat(faucet): mdd-75 added light tag styles
1 parent cbe07f1 commit 529e200

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/components/NavbarWallet/navbarWallet.module.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
:root[data-theme="dark"] {
22
--navbarWallet-color: #fff;
3+
--tag-bg-color: #213949;
4+
--tag-border-color: transparent;
35
}
46

57
:root[data-theme="light"] {
68
--navbarWallet-color: #141618;
9+
--tag-bg-color: #fff;
10+
--tag-border-color: #43AEFC;
711
}
812

913
:global([class*="navbarSearchContainer"]) {
@@ -144,7 +148,8 @@
144148
min-width: 45px;
145149
padding: 4px 4px 6px 4px;
146150
margin-left: 10px;
147-
background-color: #213949;
151+
background-color: var(--tag-bg-color);
148152
color: #43AEFC;
149153
border-radius: 12px;
154+
border: 1px solid var(--tag-border-color);
150155
}

0 commit comments

Comments
 (0)