Skip to content

Commit

Permalink
Response to latest @georgewrmarshall review
Browse files Browse the repository at this point in the history
  • Loading branch information
HowardBraham committed Mar 3, 2023
1 parent abbfb03 commit ee95fc8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ui/components/component-library/text/text.constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export const TEXT_DIRECTIONS = {
* The INVISIBLE_CHARACTER is a very useful tool if you want to make sure a line of text
* takes up vertical space even if it's empty.
*/
export const INVISIBLE_CHARACTER = '\u200d';
export const INVISIBLE_CHARACTER = '\u200B';
2 changes: 1 addition & 1 deletion ui/pages/create-account/import-account/bottom-buttons.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function BottomButtons({
const dispatch = useDispatch();

return (
<Box display={DISPLAY.FLEX}>
<Box display={DISPLAY.FLEX} gap={4}>
<ButtonSecondary
onClick={() => {
dispatch(actions.hideWarning());
Expand Down
2 changes: 1 addition & 1 deletion ui/pages/create-account/import-account/import-account.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export default function NewAccountImportForm() {
<>
<Box
padding={4}
style={{ borderWidth: '0px 0px 1px 0px' }} // There is no way to do just a bottom border in the Design System
className="bottom-border-1px" // There is no way to do just a bottom border in the Design System
borderColor={BorderColor.borderDefault}
>
<Text variant={TextVariant.headingLg}>{t('importAccount')}</Text>
Expand Down
4 changes: 4 additions & 0 deletions ui/pages/create-account/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
@include screen-sm-min {
position: absolute;
}

.bottom-border-1px {
border-width: 0px 0px 1px 0px;
}
}


Expand Down

0 comments on commit ee95fc8

Please sign in to comment.