RC-96 | Add Boolean inputs for the item forms

This commit is contained in:
Oliver-Akins 2025-01-12 10:39:50 -07:00
parent 5c78523791
commit fe90172656
4 changed files with 45 additions and 1 deletions

View file

@ -61,4 +61,9 @@
[data-tag-count="0"] {
justify-content: start;
}
[data-input-type="boolean"] > .checkbox-container {
display: flex;
justify-content: right;
}
}

View file

@ -16,6 +16,12 @@
border-bottom: var(--input-underline);
}
&[type="checkbox"] {
all: revert-layer;
--checkbox-checked-color: var(--accent-3);
--checkbox-background-color: var(--accent-2);
}
&::placeholder {
color: var(--input-placeholder-text);
}