settings: Show bots info at full width at less than 991px.

Since the bots list breaks at 625px with left col of settings
hidden and at  850px with left col of settings visible
without this media query,
having this media query trigger at 991px shouldn't produce
any problems.
This commit is contained in:
Aman Agrawal 2020-11-01 08:14:55 +05:30 committed by Tim Abbott
parent 89b5245d3c
commit 1e56db447c
1 changed files with 4 additions and 8 deletions

View File

@ -1878,14 +1878,10 @@ body:not(.night-mode) #settings_page .custom_user_field .datepicker {
}
}
@media only screen and (min-width: 700px) and (max-width: 875px) {
.bots_list .bot-information-box {
width: calc(100% - 10px);
max-height: unset;
}
}
@media only screen and (max-width: 625px) {
@media only screen and (max-width: $lg-max) {
/* Show bot-information-box at full width on small
screen sizes. Not having this media query breaks the
information box */
.bots_list .bot-information-box {
width: calc(100% - 10px);
max-height: unset;