diff options
author | crupest <crupest@outlook.com> | 2021-05-06 22:03:34 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-05-06 22:03:34 +0800 |
commit | 33c5e6b2328cc8980fbae21edf5fdfbc9237d282 (patch) | |
tree | 5f8cd48f1bf3754eb8b57477ddd63830f01346f4 /FrontEnd/src | |
parent | ccc9fd220ac52b2b24ebe9e5978a63fd2ec8c968 (diff) | |
download | timeline-33c5e6b2328cc8980fbae21edf5fdfbc9237d282.tar.gz timeline-33c5e6b2328cc8980fbae21edf5fdfbc9237d282.tar.bz2 timeline-33c5e6b2328cc8980fbae21edf5fdfbc9237d282.zip |
fix: .text-right => .text-end.
Diffstat (limited to 'FrontEnd/src')
-rw-r--r-- | FrontEnd/src/app/views/login/index.tsx | 2 | ||||
-rw-r--r-- | FrontEnd/src/app/views/timeline-common/TimelinePageCardTemplate.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/app/views/login/index.tsx b/FrontEnd/src/app/views/login/index.tsx index c0cd9ca9..6adcef39 100644 --- a/FrontEnd/src/app/views/login/index.tsx +++ b/FrontEnd/src/app/views/login/index.tsx @@ -130,7 +130,7 @@ const LoginPage: React.FC = (_) => { /> </Form.Group> {error ? <p className="text-danger">{t(error)}</p> : null} - <div className="text-right"> + <div className="text-end"> <LoadingButton loading={process} variant="primary" diff --git a/FrontEnd/src/app/views/timeline-common/TimelinePageCardTemplate.tsx b/FrontEnd/src/app/views/timeline-common/TimelinePageCardTemplate.tsx index d8ad04af..6adde8d4 100644 --- a/FrontEnd/src/app/views/timeline-common/TimelinePageCardTemplate.tsx +++ b/FrontEnd/src/app/views/timeline-common/TimelinePageCardTemplate.tsx @@ -50,7 +50,7 @@ const TimelinePageCardTemplate: React.FC<TimelineCardTemplateProps> = ({ <small className="mt-1 d-block"> {t(timelineVisibilityTooltipTranslationMap[timeline.visibility])} </small> - <div className="text-right mt-2"> + <div className="text-end mt-2"> <i className={classnames( timeline.isHighlight ? "bi-star-fill" : "bi-star", |