stream_settings: Fix save/discard widget on narrow screens.

In narrow screens, the save/discard widget was incorrectly shown
even with no changes, due to the CSS intended to switch it from `inline-block` 
to `block display.

Fixed by adding `display: none` to `.hide` class for @media(width < 575px)
to hide buttons on screen width less than 575px.

Fixes #24589.
This commit is contained in:
Hardik Dharmani 2023-03-08 05:07:24 +05:30 committed by GitHub
parent 0488dfdd9e
commit e61a092f1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -1165,6 +1165,10 @@ div.settings-radio-input-parent {
.save-button-controls {
display: block;
margin: 0 0 10px;
&.hide {
display: none;
}
}
}
}