ripcrypt/Apps/elements/button.css
2024-12-29 21:28:13 -07:00

22 lines
293 B
CSS

.ripcrypt > .window-content button {
all: revert;
padding: 2px 4px;
&.roll {
padding: 0;
border-radius: 50%;
outline: none;
border: none;
width: 20px;
height: 20px;
&:hover:not(:disabled) {
cursor: pointer;
outline: none;
}
&:disabled {
opacity: 0.6;
}
}
}