Skip to content
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

feat: fix login bg && add welcome text #941

Merged
merged 7 commits into from
Mar 24, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: login text color to theme color
  • Loading branch information
walle233 committed Mar 22, 2023
commit 6998cb45a972419cae82b186eaafe1a32a42d375
4 changes: 0 additions & 4 deletions web/src/layouts/Auth/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,11 @@
font-style: normal;
font-weight: 500;
font-size: 36px;
// line-height: 20px;
color: #00A99D;
}

.sloganText {
font-family: 'PingFang SC';
font-style: normal;
font-weight: 400;
font-size: 20px;
// line-height: 20px;
color: #787A90;
}
6 changes: 4 additions & 2 deletions web/src/layouts/Auth/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ export default function LoginReg() {
return (
<div className={clsx(styles.container)}>
<div className={styles.welcomeWrap}>
<div className={styles.welcomeText}>Welcome to laf !</div>
<div className={styles.sloganText}>life is short, you need laf.</div>
<div className={clsx(styles.welcomeText, ["text-primary-600"])}>Welcome to laf !</div>
<div className={clsx(styles.sloganText, ["text-grayModern-500"])}>
life is short, you need laf.
</div>
</div>
<Outlet />
</div>
Expand Down