RC-93 | Group Input

This commit is contained in:
Oliver-Akins 2025-01-29 21:46:56 -07:00
parent f39c1b7721
commit e2297daa5d
6 changed files with 87 additions and 2 deletions

View file

@ -26,9 +26,20 @@
background: var(--base-background);
color: var(--base-text);
> [data-input-type] {
[data-input-type] {
display: contents;
}
> [data-input-type="group"] {
display: unset;
grid-column: 1 / -1;
> .content {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
column-gap: var(--col-gap);
row-gap: var(--row-gap);
}
}
hr {
background: var(--accent-1);