UI: correctly adds spacing for selection-management (#22006)

On iOS the safe area was not applied correctly.
This commit is contained in:
Joffrey JAFFEUX 2023-06-08 17:37:28 +02:00 committed by GitHub
parent ca2f51055f
commit 31feb65167
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,7 @@
display: flex;
flex-direction: column;
width: 100%;
padding-bottom: env(safe-area-inset-bottom);
.cancel-btn {
margin-left: initial;
@ -10,6 +11,10 @@
.btn {
margin-bottom: 0.25em;
&:last-child {
margin-bottom: 0;
}
}
}
}