ripcrypt/Apps/elements/button.css
2025-01-01 15:20:15 -07:00

24 lines
360 B
CSS

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