0
0
Fork 0

デザイン調整と韓国語対応

This commit is contained in:
Xeltica 2022-02-09 11:30:16 +09:00
parent d286100873
commit d43688d877
8 changed files with 41 additions and 22 deletions

View file

@ -5,6 +5,6 @@ import { Skeleton } from './Skeleton';
export const CurrentUser: React.VFC = () => {
const {data} = useGetSessionQuery(undefined);
return data ? (
<h1 className="text-125">{data.username}<span className="text-dimmed">@{data.host}</span></h1>
<h1 className="text-125"><i className="bi-person"></i> {data.username}<span className="text-dimmed">@{data.host}</span></h1>
) : <Skeleton height="1.5rem" />;
};