commenced wallet styling; much of site now holds font-awesome placeholders until proprietary svg files apprpriated
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-09 14:40:34 -04:00
parent bb2116ae9f
commit 251b3bf778
8 changed files with 73 additions and 10 deletions

View File

@@ -0,0 +1,27 @@
.token {
position: relative;
display: inline-block;
cursor: pointer;
color: rgba(var(--terUser), 1);
.token-tooltip {
display: none;
position: absolute;
bottom: 125%;
left: 0;
width: 16rem;
max-width: 16rem;
white-space: normal;
background-color: rgba(var(--priUser), 0.95);
border: 0.1rem solid rgba(var(--secUser), 0.5);
color: rgba(var(--secUser), 1);
padding: 0.5rem 0.75rem;
border-radius: 0.5rem;
z-index: 10;
font-size: 0.875rem;
}
&:hover .token-tooltip {
display: block;
}
}