Use automatic sizing where supported

This commit is contained in:
Jason Zimdars
2025-07-02 16:42:27 -05:00
parent 16535db20e
commit 462878630e
+10
View File
@@ -66,6 +66,16 @@
&::placeholder {
color: var(--card-color);
}
&:is(input) {
max-inline-size: 70ch;
min-inline-size: 30ch;
@supports (field-sizing: content) {
field-sizing: content;
min-inline-size: 15ch;
}
}
}
.step__content--edit {