Implemented the lateral expansion of the area-box in the forms (create/update) of the quota tariff (#9681)

This commit is contained in:
Layon 2024-09-17 09:06:50 -03:00 committed by GitHub
parent f37afa829d
commit 5f8077824a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 5 deletions

View File

@ -18,11 +18,20 @@
.form {
width: 80vw;
.full-width-input {
width: 100%;
}
@media (min-width: 500px) {
width: 400px;
width: fit-content;
min-width: 20vw;
}
}
.form textarea {
resize: both;
min-width: 20vw;
max-width: 80vw;
}
.ant-input-number,
.ant-calendar-picker {
width: 100%;
}