fix: floating action bar position.

This commit is contained in:
Darshan
2025-07-11 11:48:11 +05:30
parent 13f37e5e9c
commit 447bedafc6
@@ -358,8 +358,12 @@
</Confirm>
<style>
.floating-action-bar :global(div:first-of-type) {
/* 50% > 60% because we have sub-navigation */
left: calc(60% - var(--p-floating-action-bar-width) / 2);
.floating-action-bar {
position: fixed;
:global(div:first-of-type) {
/* 50% > 60% because we have sub-navigation */
left: calc(60% - var(--p-floating-action-bar-width) / 2);
}
}
</style>