Small hack to make button "+" and "-" to be same size.
* It would be better to put a specific class for de/increase buttons. * Right now just adding min-width to input globally in SASS.
This commit is contained in:
parent
6da9190b03
commit
b189bc31d0
3 changed files with 5 additions and 2 deletions
|
@ -67,7 +67,8 @@ input[type="button"], input[type="submit"], input[type="reset"] {
|
|||
color: #222222;
|
||||
padding: 0.1em 0.5em;
|
||||
font-size: 1em;
|
||||
font-weight: bold; }
|
||||
font-weight: bold;
|
||||
min-width: 34px; }
|
||||
|
||||
select {
|
||||
max-width: 15em; }
|
||||
|
|
|
@ -67,7 +67,8 @@ input[type="button"], input[type="submit"], input[type="reset"] {
|
|||
color: #222222;
|
||||
padding: 0.1em 0.5em;
|
||||
font-size: 1em;
|
||||
font-weight: bold; }
|
||||
font-weight: bold;
|
||||
min-width: 34px; }
|
||||
|
||||
select {
|
||||
max-width: 15em; }
|
||||
|
|
|
@ -78,6 +78,7 @@ input[type="button"], input[type="submit"], input[type="reset"]
|
|||
padding: 0.1em 0.5em
|
||||
font-size: 1em
|
||||
font-weight: bold
|
||||
min-width: 34px
|
||||
|
||||
select
|
||||
max-width: 15em
|
||||
|
|
Loading…
Reference in a new issue