Please provide a brief description of the changes made in this PR.
Related Issue(s)
Closes #22
If applicable, please reference the issue(s) that this PR addresses. If the PR does not address any specific issue, you can remove this section.
Changes Made
List the main changes made in this PR. Be as specific as possible.
[x] Bug fixed
Screenshots (if applicable)
Provide screenshots or GIFs that visually represent the changes. If not applicable, you can remove this section.
Checklist
Before submitting this PR, please make sure that:
[x] Your code passes linting and coding style checks.
[x] You have reviewed your own code and resolved any merge conflicts.
[x] You have requested a review from at least one team member.
[x] Any relevant issue(s) have been linked to this PR.
Additional Information
After code splitting, most of the breaking changes occurred due to the omission of grid.css, which was bringing in the following selector:
.flex * {
flex: 1 1 auto;
}
This affected several places in the app. Most of these only needed the addition of the flex-auto class to fix.
Besides this, there are some trivial margin/padding changes here and there, to keep the layout as close to original as possible. None of the style changes should be evident to users.
Description
Please provide a brief description of the changes made in this PR.
Related Issue(s)
Closes #22
If applicable, please reference the issue(s) that this PR addresses. If the PR does not address any specific issue, you can remove this section.
Changes Made
List the main changes made in this PR. Be as specific as possible.
Screenshots (if applicable)
Provide screenshots or GIFs that visually represent the changes. If not applicable, you can remove this section.
Checklist
Before submitting this PR, please make sure that:
Additional Information
After code splitting, most of the breaking changes occurred due to the omission of
grid.css
, which was bringing in the following selector:This affected several places in the app. Most of these only needed the addition of the
flex-auto
class to fix.Besides this, there are some trivial margin/padding changes here and there, to keep the layout as close to original as possible. None of the style changes should be evident to users.