File: /var/www/design.system/src/tokens/Token.css
.tokenBlock {
width: max-content;
cursor: pointer;
display: flex;
gap: 8px;
&:hover {
.tokenCopy {
opacity: 0.4;
visibility: visible;
}
}
}
.tokenInfo {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 6px;
}
.tokenTitle {
font-weight: 500;
font-size: 20px;
}
.tokenValue {
opacity: 0.7;
margin-top: 4px;
}
.tokenCopy {
opacity: 0;
visibility: hidden;
display: flex;
flex-direction: column-reverse;
flex-grow: 1;
text-transform: uppercase;
font-size: 12px;
font-weight: 700;
}