hugo-soresu

My fork of hugo-xmin

git clone git://git.shimmy1996.com/hugo-soresu.git
commit b926d23d04b7da9fdc7bfbbcb23b66b855eb1efc
parent 1641eb2c25ad0863acf655bd451a57303edcbdb5
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sat, 14 Sep 2019 11:57:22 -0400

Remove browser styling on inputs

Diffstat:
Mlayouts/partials/css/isso.css | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/layouts/partials/css/isso.css b/layouts/partials/css/isso.css
@@ -194,6 +194,9 @@
     margin: 0;
 }
 .isso-postbox > .form-wrapper > .auth-section .input-wrapper input {
+    -webkit-appearance: none;
+    -moz-appearance: none;
+    appearance: none;
     padding: .3em 10px;
     max-width: 100%;
     border-radius: 5px;
@@ -208,6 +211,9 @@
     margin: 0 0 0 5px;
 }
 .isso-postbox > .form-wrapper > .auth-section .post-action > input {
+    -webkit-appearance: none;
+    -moz-appearance: none;
+    appearance: none;
     padding: .3em;
     border-radius: 5px;
     border: 2px solid var(--stress-1-color);