platform specific styling to inputs and select are removed

This commit is contained in:
Gaelle Morin 2018-12-11 15:42:51 +01:00
parent 5a6b3f8398
commit c8564fb76c
2 changed files with 6 additions and 3 deletions

View File

@ -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%),

View File

@ -60,6 +60,11 @@ h4 {
font-size: 0.68em;
}
input, select {
-webkit-appearance: none;
-moz-appearance: none;
}
.debug {
outline: 2px dotted red;
}