Browse Source

Fix toastify offset approach

Use margin-top to avoid overriding the top value which has different
values depending on how many notifications are visible.

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
pull/5821/head
Vincent Petry 5 years ago
parent
commit
eca4fb4f37
No known key found for this signature in database GPG Key ID: E055D6A4D513575C
  1. 2
      src/App.vue

2
src/App.vue

@ -454,7 +454,7 @@ export default {
<style lang="scss">
/** override toastify position due to top bar */
body.has-topbar .toastify-top {
top: 65px !important;
margin-top: 105px;
}
</style>

Loading…
Cancel
Save