append/prepend for small sizes only

This commit is contained in:
Andy Miller
2019-05-27 19:32:58 +03:00
parent 7dc2c26995
commit 52d46cfa40
3 changed files with 18 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -316,12 +316,26 @@ form {
}
}
.x-small, .x-small.form-input-addon-wrapper input {
.x-small {
max-width: 5rem !important;
&.form-input-addon-wrapper {
max-width: inherit !important;
input {
max-width: 5rem !important;
}
}
}
.small, .small.form-input-addon-wrapper input {
.small {
max-width: 10rem !important;
&.form-input-addon-wrapper {
max-width: inherit !important;
input {
max-width: 10rem !important;
}
}
}
.medium, .medium.form-input-addon-wrapper input {