-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix Accounts list to be scrollable * fix Statistics gap to be 16px when smaller than lg * fix Profile/Mymemberships header responsive * fix Mymembershiplist scrollable * fix invite/add member modal * fix members page filter * fix modals responsive, disable some * fix sidebarSlider * fix Pagination responsiveness * fix memberlistitem min-width * fix width and padding of memberlistfilter box * fix modals * replace window.innerWidth with screen.width * mock width of the screen * hide modal when decreasing the width of the window * hide My Profile in the navigation slider in mobile * update responsive provider, add not support mobile modal * Update packages/ui/src/app/GlobalModals.tsx Co-authored-by: Theophile Sandoz <[email protected]> * update GlobalModal --------- Co-authored-by: Theophile Sandoz <[email protected]>
- Loading branch information
1 parent
528ed99
commit 7481d71
Showing
16 changed files
with
169 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
packages/ui/src/common/components/NotSupportMobileModal.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from 'react' | ||
|
||
import { Modal, ModalBody, ModalHeader } from '@/common/components/Modal' | ||
import { TextMedium } from '@/common/components/typography' | ||
|
||
interface Props { | ||
onClose: () => void | ||
} | ||
|
||
export const NotSupportMobileModal = ({ onClose }: Props) => ( | ||
<Modal onClose={onClose} modalSize="xs"> | ||
<ModalHeader onClick={onClose} title="" /> | ||
<ModalBody> | ||
<TextMedium>This action requires a browser extension, please visit this page from a desktop browser.</TextMedium> | ||
</ModalBody> | ||
</Modal> | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.