-
Notifications
You must be signed in to change notification settings - Fork 165
[Terra-Arrange] Reflow issue when port is resized to 320x256 & Radio Button issue #3945
Conversation
7b11add
to
c81c1ff
Compare
c81c1ff
to
fc6f448
Compare
packages/terra-arrange/CHANGELOG.md
Outdated
*Fixed | ||
* Fixed Terra Arrange Reflow issue `terra-arrange`. | ||
* Fixed Terra Arrange Radio button issue `terra-arrange`. |
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.
@gt106551 Please maintain the existing format on change log for consistency
"Fixed Terra Arrange Reflow issue terra-arrange
" This does not provide enough information about the fix made on this PR
Radio button issue is specific to the example hence not required this changelog should only have the changes made for component not for it's example
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.
Change log Updated
flex: 0 0; | ||
} | ||
} | ||
} |
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.
nit: add a new line.
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.
Added a new line
*Fixed | ||
* Fixed Terra Arrange Reflow issue `terra-arrange`. | ||
* Fixed Terra Arrange Radio button issue `terra-arrange`. |
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.
change log are not clear and missing formatting
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.
Updated change log as per suggestion
*Fixed | ||
* Fixed reflow issue when the viewport is resized to 320x256 px `terra-arrange`. |
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.
*Fixed | |
* Fixed reflow issue when the viewport is resized to 320x256 px `terra-arrange`. | |
* Updated | |
* Updated `terra-arrange` examples to use `terra-form-radio`. |
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.
Updated
packages/terra-arrange/CHANGELOG.md
Outdated
*Fixed | ||
* Fixed reflow issue when the viewport is resized to 320x256 px `terra-arrange`. |
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.
*Fixed | |
* Fixed reflow issue when the viewport is resized to 320x256 px `terra-arrange`. | |
* Fixed | |
* Fixed reflow issue when the viewport is resized to 320x256 px. |
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.
Updated
@gt106551 Can you add screenshot of the issue before and after code changes |
d59d4bd
to
0fd4c76
Compare
+1 |
Before changes
After changes
Summary
1.Terra Arrange refow Issue- Previously, when port is resized to 320x256px buttons are moving out of example border. Now it has been resolved
2.Terra Arrange Radio button issue-Previously, the radio button options are only read individually as Yes and No and not in conjunction with their associated questions. Now it was announcing associated questions when we navigate to radio buttons
What was changed:
Added below media Query to fix reflow issue
@media (max-width: 320px) {
.fit {
align-self: flex-start;
flex: 0 0;
}
}
Why it was changed:
To fix reflow issue
Testing
This change was tested using:
Reviews
In addition to engineering reviews, this PR needs:
Additional Details
This PR resolves:
UXPLATFORM-9728
Thank you for contributing to Terra.
@cerner/terra