-
Notifications
You must be signed in to change notification settings - Fork 16
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
Fixed popup size #2813
base: develop
Are you sure you want to change the base?
Fixed popup size #2813
Conversation
Renatavl
commented
Nov 20, 2024
Quality Gate passedIssues Measures |
@@ -24,7 +24,7 @@ const style = { | |||
formContainer: { | |||
display: 'flex', | |||
flexDirection: 'column', | |||
maxHeight: 'inherit', | |||
height: '551px', |
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.
does it look correct on other devices, for example mobile phones, with this hardcoded value?
@@ -2,7 +2,7 @@ export const styles = { | |||
form: { | |||
display: 'flex', | |||
flexDirection: 'column', | |||
minWidth: { sm: '340px' } | |||
width: { sm: '340px' } |
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.
why did you hardcoded the width
property?