1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00

Merge pull request #5399 from Budibase/bug/sev3/settings_bar_covering_button

Move settings bar below element if at very top [TWEAK]
This commit is contained in:
melohagan 2022-04-14 08:41:18 +01:00 committed by GitHub
commit 86218a1002
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,7 +67,7 @@
}
//If element is at the very top of the screen, put the bar below the element
if (elBounds.top < elBounds.height) {
if (elBounds.top < elBounds.height && elBounds.height < 80) {
newTop = elBounds.bottom + verticalOffset
}