fix more builder extremes

This commit is contained in:
Geoff Doty 2021-10-16 05:15:43 -04:00
parent c15079f22f
commit 054c817f65
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* Grayscale CSS v:0.4 | MIT LICENSE | https://github.com/n2geoff/grayscale */
/* Grayscale CSS v:0.8 | MIT LICENSE | https://github.com/n2geoff/grayscale */
:root {
--Hsl: 207;
--hSl: 50%;
@ -195,6 +195,7 @@ input[type="submit"],input[type="reset"] {
select {
background: var(--bg) no-repeat 100%;
color: var(--fg);
padding: clamp(.5rem, var(--space), 2rem);
appearance: none;
background-size: 1ex;
background-origin: content-box;
@ -206,7 +207,7 @@ textarea {
resize: vertical;
border: 1px solid var(--theme);
height: calc(var(--line) * 6rem);
padding: var(--space);
padding: clamp(.5rem, var(--space), 2rem);
cursor: text;
color: var(--fg);
}