Move FAB to the left in RTL

This commit is contained in:
Alex Gleason
2022-12-23 15:37:45 -06:00
parent ab7ec4babd
commit 01d7aa6307

View File

@ -641,7 +641,7 @@ const UI: React.FC = ({ children }) => {
</Layout>
{(me && !shouldHideFAB()) && (
<div className='z-40 lg:hidden transition-all fixed bottom-24 right-4'>
<div className='z-40 lg:hidden transition-all fixed bottom-24 right-4 rtl:left-4 rtl:right-auto'>
<FloatingActionButton />
</div>
)}