mirror of
https://github.com/GuerillaStudio/souvenir.git
synced 2024-11-08 10:51:53 +00:00
style(capture options): Fix select appearance
This commit is contained in:
parent
e278ea149e
commit
ffbc9c069e
3 changed files with 3 additions and 5 deletions
|
@ -28,6 +28,7 @@
|
||||||
"z-index",
|
"z-index",
|
||||||
"display",
|
"display",
|
||||||
"visibility",
|
"visibility",
|
||||||
|
"-moz-appearance",
|
||||||
"-webkit-appearance",
|
"-webkit-appearance",
|
||||||
"appearance",
|
"appearance",
|
||||||
"flex-direction",
|
"flex-direction",
|
||||||
|
|
|
@ -15,6 +15,8 @@
|
||||||
|
|
||||||
.options__select,
|
.options__select,
|
||||||
.options__btn {
|
.options__btn {
|
||||||
|
-moz-appearance: none;
|
||||||
|
-webkit-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
border: .1rem solid transparent;
|
border: .1rem solid transparent;
|
||||||
|
|
|
@ -2,11 +2,6 @@
|
||||||
/* == Progress Bar */
|
/* == Progress Bar */
|
||||||
/* ----------------------------------------------------------- */
|
/* ----------------------------------------------------------- */
|
||||||
|
|
||||||
.progressBar {
|
|
||||||
-webkit-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.progressBar {
|
.progressBar {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
Loading…
Reference in a new issue