From b1b59ebebf4475cf57bc15f08a5d1eaa429039b1 Mon Sep 17 00:00:00 2001 From: Stephen Li Date: Sat, 30 Apr 2022 02:31:29 -0400 Subject: [PATCH] Fix settings input alignment on Firefox --- src/components/UserscriptAppSettings.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/UserscriptAppSettings.vue b/src/components/UserscriptAppSettings.vue index dc70058..4db36b7 100644 --- a/src/components/UserscriptAppSettings.vue +++ b/src/components/UserscriptAppSettings.vue @@ -125,6 +125,7 @@ label{ display: grid; gap: math.div($padding, 2); grid-template-columns: 1fr 2fr; + justify-items: left; } input{ @@ -137,6 +138,10 @@ input{ &:focus{ border-color: black; } + + &:not([type='checkbox']){ + width: 100%; + } } a.btn{