Skip to content

Commit

Permalink
Implemented the lateral expansion of the area-box in the forms (creat…
Browse files Browse the repository at this point in the history
…e/update) of the quota tariff (#9681)
  • Loading branch information
LayonRibeiro authored Sep 17, 2024
1 parent f37afa8 commit 5f80778
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions ui/src/style/objects/form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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%;
}

0 comments on commit 5f80778

Please sign in to comment.