ripcrypt/templates/css/elements/button.css

26 lines
366 B
CSS

.ripcrypt button {
all: revert;
outline: none;
border: none;
padding: 2px 4px;
background: var(--button-background);
color: var(--button-text);
&:hover:not(:disabled) {
cursor: pointer;
outline: none;
}
&:disabled {
opacity: 0.6;
}
&.icon {
padding: 0;
border-radius: 50%;
outline: none;
border: none;
width: 20px;
height: 20px;
}
}