Settings entry: fix overflow cut-off

Fixes #334, a regression from the mobile UI changes
This commit is contained in:
Felix Niklas 2021-02-26 11:25:32 +01:00 committed by Martin Edenhofer
parent 3fecb53915
commit 5b6f0327c6

View file

@ -8864,8 +8864,11 @@ footer {
.settings-entry {
margin-bottom: 42px;
max-width: 700px;
overflow: auto;
-webkit-overflow-scrolling: touch;
@include phone {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
&--stretched {
max-width: none;