A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/components/ui/icon-button/icon-button.scss

30 lines
526 B

.icon-button {
display: flex;
flex-direction: column;
align-items: center;
background-color: unset;
text-align: center;
@include H7;
font-size: 13px;
cursor: pointer;
color: var(--color-primary-default);
&__circle {
display: flex;
justify-content: center;
align-items: center;
height: 36px;
width: 36px;
background: var(--color-primary-default);
border-radius: 18px;
margin-top: 6px;
margin-bottom: 5px;
}
&--disabled {
opacity: 0.3;
cursor: auto;
}
}