Move each the element-specific styles into separate files

This commit is contained in:
Oliver-Akins 2024-12-30 22:01:44 -07:00
parent ff43ef2eb9
commit 05f111682e
4 changed files with 45 additions and 44 deletions

15
Apps/elements/input.css Normal file
View file

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