diff --git a/templates/widgets/form.lucius b/templates/widgets/form.lucius index 38bea2dd9..67129b060 100644 --- a/templates/widgets/form.lucius +++ b/templates/widgets/form.lucius @@ -245,7 +245,6 @@ input[type="checkbox"]:checked::after { /* CUSTOM FILE INPUT */ input[type="file"] { - grid-column-start: 2; color: white; width: 0.1px; height: 0.1px; @@ -321,3 +320,12 @@ input[type="file"] { .file-input__container--valid + .file-input__remover { display: block; } +@media (max-width: 999px) { + .file-input__container, + .file-input__remover { + grid-column-start: 1; + } + .file-input__remover { + justify-self: end; + } +}