Commit 984ba7ff authored by Chunchi Che's avatar Chunchi Che

update styles of SSO

parent d31203f0
Pipeline #22813 passed with stages
in 12 minutes and 11 seconds
.hint {
font-size: 20px;
font-family: "Gill Sans", sans-serif;
text-shadow: #FC0 1px 0 10px;
}
...@@ -3,6 +3,8 @@ import React, { useEffect, useState } from "react"; ...@@ -3,6 +3,8 @@ import React, { useEffect, useState } from "react";
import { useConfig } from "@/config"; import { useConfig } from "@/config";
import { accountStore, User } from "@/stores"; import { accountStore, User } from "@/stores";
import styles from "./index.module.scss";
const NeosConfig = useConfig(); const NeosConfig = useConfig();
const SSO: React.FC = () => { const SSO: React.FC = () => {
...@@ -29,7 +31,9 @@ const SSO: React.FC = () => { ...@@ -29,7 +31,9 @@ const SSO: React.FC = () => {
return ( return (
<div> <div>
<p>{logined ? "登录成功,正在跳转。。" : "登录萌卡账号中。。。"}</p> <p className={styles.hint}>
{logined ? "登录成功,正在跳转。。" : "登录萌卡账号中。。。"}
</p>
</div> </div>
); );
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment