-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/mobile article comment #4201
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -2,13 +2,13 @@ | |||
display: flex; | |||
flex-direction: column; | |||
flex-shrink: 1; | |||
max-height: calc(70vh - 4.25rem); /* 4.25rem is the height of header */ | |||
max-height: calc(90vh - 4.25rem); /* 4.25rem is the height of header */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
90vh is not enough space for mobile browser, and it might break other dialogs with fixedHeight
prop?
src/common/enums/events.ts
Outdated
@@ -22,6 +22,7 @@ export const CLOSE_ACTIVE_DIALOG = 'closeActiveDialog' | |||
export const OPEN_SUBSCRIBE_CIRCLE_DIALOG = 'openSubscribeCircleDialog' | |||
export const OPEN_SET_USER_NAME_DIALOG = 'openSetUserNameDialog' | |||
export const OPEN_SHOW_NOMAD_BADGE_DIALOG = 'openShowNomadBadgeDialog' | |||
export const OPEN_ARTICLE_DETAIL_DIALOG = 'openArticleDetailDialog' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo? OPEN_COMMENT_DETAIL_DIALOG?
No description provided.