From c8564fb76c46e329f217c1137e7a0781294f1d67 Mon Sep 17 00:00:00 2001 From: Gaelle Morin Date: Tue, 11 Dec 2018 15:42:51 +0100 Subject: [PATCH] platform specific styling to inputs and select are removed --- src/styles/filters.scss | 4 +--- src/styles/main.scss | 5 +++++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/styles/filters.scss b/src/styles/filters.scss index 8737a6f..d802d40 100644 --- a/src/styles/filters.scss +++ b/src/styles/filters.scss @@ -1,7 +1,7 @@ #offers-list > sib-form > form { border-bottom: 1px solid $color-grey1; display: grid; - grid-gap: 0px 24px; + grid-gap: 0px 30px; grid-template-columns: 33% auto; padding-bottom: 3em; @@ -25,8 +25,6 @@ padding: 0.5em 12.5em 0.5em 1em; box-sizing: border-box; - -webkit-appearance: none; - -moz-appearance: none; background-image: linear-gradient(45deg, transparent 50%, $color-grey 50%), diff --git a/src/styles/main.scss b/src/styles/main.scss index d33da27..f0250be 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -60,6 +60,11 @@ h4 { font-size: 0.68em; } +input, select { + -webkit-appearance: none; + -moz-appearance: none; +} + .debug { outline: 2px dotted red; }