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 CSS.
This commit is contained in:
parent
6da9190b03
commit
a5349191b7
1 changed files with 2 additions and 1 deletions
|
@ -67,7 +67,8 @@ input[type="button"], input[type="submit"], input[type="reset"] {
|
||||||
color: #222222;
|
color: #222222;
|
||||||
padding: 0.1em 0.5em;
|
padding: 0.1em 0.5em;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
font-weight: bold; }
|
font-weight: bold;
|
||||||
|
min-width: 34px; }
|
||||||
|
|
||||||
select {
|
select {
|
||||||
max-width: 15em; }
|
max-width: 15em; }
|
||||||
|
|
Loading…
Reference in a new issue