settings: Make account settings more responsive.

The textarea in Settings/User Profile was overflowing in
smaller width devices.

This commit fixes that issue by adding appropriate media queries.

Fixes part of #16817.
This commit is contained in:
Riken Shah
2020-12-03 19:26:25 +00:00
committed by Tim Abbott
parent 54c97c4457
commit 70bc5ba6f2

View File

@@ -1873,6 +1873,9 @@ body:not(.night-mode) #settings_page .custom_user_field .datepicker {
flex-direction: column;
margin-top: 5px;
}
#settings_page .custom_user_field textarea {
width: calc(100% - 25px);
}
}
@media only screen and (width < $lg_min) {