emoji-picker-element/src/picker/styles/resets.scss

23 lines
313 B
SCSS
Raw Normal View History

2020-06-04 03:00:53 +02:00
button {
2020-06-01 03:05:51 +02:00
margin: 0;
padding: 0;
border: none;
background: none;
box-shadow: none;
cursor: pointer;
&::-moz-focus-inner {
border: 0; // https://stackoverflow.com/a/199319/680742
}
}
2020-06-04 03:00:53 +02:00
input {
2020-06-01 03:05:51 +02:00
padding: 0;
margin: 0;
line-height: 1.15;
}
2020-06-04 03:00:53 +02:00
input[type=search] {
2020-06-01 03:05:51 +02:00
-webkit-appearance: none;
2020-06-03 05:07:19 +02:00
}