ripcrypt/Apps/elements/input.css
2024-12-30 23:01:37 -07:00

18 lines
315 B
CSS

.ripcrypt > .window-content {
input, .input {
all: revert;
box-sizing: border-box;
border: none;
outline: none;
font-family: inherit;
font-size: inherit;
position: relative;
background: none;
padding: 0px 4px;
&[type="text"],
&[type="number"] {
border-bottom: 2px dashed purple;
}
}
}