-
Notifications
You must be signed in to change notification settings - Fork 536
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 responsiveness #9166
fixed responsiveness #9166
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -1315,3 +1315,16 @@ input[type="number"] { | |||||||||||||||||||||
--radius: 0.5rem; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
} | ||||||||||||||||||||||
@media screen and (max-width:915px){ | ||||||||||||||||||||||
.containerss{ | ||||||||||||||||||||||
flex-wrap: wrap; | ||||||||||||||||||||||
gap: 5px; | ||||||||||||||||||||||
margin-bottom: 5px; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
Comment on lines
+1319
to
+1323
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Rename class to follow naming conventions The class name 'containerss' appears to have a typo (double 's'). Consider renaming it to 'container' or 'containers' for better maintainability. - .containerss{
+ .container{
flex-wrap: wrap;
gap: 5px;
margin-bottom: 5px;
} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||
.bshadow{ | ||||||||||||||||||||||
border:solid rgb(168, 168, 168); | ||||||||||||||||||||||
} | ||||||||||||||||||||||
.mtrequired{ | ||||||||||||||||||||||
margin-top: 0.5rem; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
} | ||||||||||||||||||||||
Comment on lines
+1318
to
+1330
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix syntax error: Missing closing curly brace The file is missing a closing curly brace at the end, which could cause CSS parsing issues. @media screen and (max-width:915px){
.containerss{
flex-wrap: wrap;
gap: 5px;
margin-bottom: 5px;
}
.bshadow{
border:solid rgb(168, 168, 168);
}
.mtrequired{
margin-top: 0.5rem;
}
}
+ }
🧰 Tools🪛 Biome[error] 1330-1330: expected the file ends here (parse) |
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.
Reconsider the global application of 'mtrequired' class
The addition of 'mtrequired' class raises several concerns:
Consider this alternative approach:
And add a new prop to ButtonStyleProps: