Merge pull request 'Fixed width if bottom sheet modal component' (#104) from fix/bottom-sheet-modal into develop

Reviewed-on: http://85.143.176.51:3000/free-land/front-end/pulls/104
This commit is contained in:
Denis Gorbunov 2022-08-23 10:43:36 +00:00
commit cd4f5f55ca

View File

@ -25,7 +25,7 @@ export function BottomSheetModal({
leaveFrom="translate-y-0 opacity-100" leaveFrom="translate-y-0 opacity-100"
leaveTo="translate-y-full opacity-0" leaveTo="translate-y-full opacity-0"
> >
<Dialog className="fixed bottom-0" as="div" onClose={() => {}}> <Dialog className="fixed bottom-0 w-full" as="div" onClose={() => {}}>
{children} {children}
</Dialog> </Dialog>
</Transition> </Transition>