set width on number inputs

This commit is contained in:
Kyle Spearrin 2018-08-20 12:33:47 -04:00
parent d688e52c49
commit ce61e62cf0
1 changed files with 5 additions and 1 deletions

View File

@ -147,7 +147,7 @@
&.box-content-row-checkbox, &.box-content-row-input, &.box-content-row-slider {
label, .row-label {
font-size: $font-size-base;
display: inline;
display: block;
width: initial;
margin-bottom: 0;
@ -183,6 +183,10 @@
input {
text-align: right;
&[type="number"] {
max-width: 50px;
}
}
}