aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components
diff options
context:
space:
mode:
authorWolfboy248 <georgejvindkarlsen@gmail.com>2024-10-30 10:03:21 +0100
committerWolfboy248 <georgejvindkarlsen@gmail.com>2024-10-30 10:03:21 +0100
commitb4f1d273a4b1dcee9738b81cee6cae4c35aad610 (patch)
tree0ce51999d69d23daa4439457e54161222925efb1 /frontend/src/components
parentfrontend: maplist chapter param fix (diff)
downloadlphub-b4f1d273a4b1dcee9738b81cee6cae4c35aad610.tar.gz
lphub-b4f1d273a4b1dcee9738b81cee6cae4c35aad610.tar.bz2
lphub-b4f1d273a4b1dcee9738b81cee6cae4c35aad610.zip
frontend: random css stuff
Diffstat (limited to 'frontend/src/components')
-rw-r--r--frontend/src/components/Login.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/src/components/Login.tsx b/frontend/src/components/Login.tsx
index a8c5503..545f724 100644
--- a/frontend/src/components/Login.tsx
+++ b/frontend/src/components/Login.tsx
@@ -38,7 +38,7 @@ const Login: React.FC<LoginProps> = ({ setToken, profile, setProfile }) => {
38 <> 38 <>
39 <Link to="/profile" tabIndex={-1} className='login'> 39 <Link to="/profile" tabIndex={-1} className='login'>
40 <button className='sidebar-button'> 40 <button className='sidebar-button'>
41 <img src={profile.avatar_link} alt="" /> 41 <img className="avatar-img" src={profile.avatar_link} alt="" />
42 <span>{profile.user_name}</span> 42 <span>{profile.user_name}</span>
43 </button> 43 </button>
44 <button className='logout-button' onClick={_logout}> 44 <button className='logout-button' onClick={_logout}>
@@ -52,7 +52,7 @@ const Login: React.FC<LoginProps> = ({ setToken, profile, setProfile }) => {
52 <> 52 <>
53 <Link to="/" tabIndex={-1} className='login'> 53 <Link to="/" tabIndex={-1} className='login'>
54 <button className='sidebar-button'> 54 <button className='sidebar-button'>
55 <img src={profile.avatar_link} alt="" /> 55 <img className="avatar-img" src={profile.avatar_link} alt="" />
56 <span>Loading Profile...</span> 56 <span>Loading Profile...</span>
57 </button> 57 </button>
58 <button disabled className='logout-button' onClick={_logout}> 58 <button disabled className='logout-button' onClick={_logout}>
@@ -68,7 +68,7 @@ const Login: React.FC<LoginProps> = ({ setToken, profile, setProfile }) => {
68 ( 68 (
69 <Link to="/api/v1/login" tabIndex={-1} className='login' > 69 <Link to="/api/v1/login" tabIndex={-1} className='login' >
70 <button className='sidebar-button' onClick={_login}> 70 <button className='sidebar-button' onClick={_login}>
71 <img src={UserIcon} alt="" /> 71 <img className="avatar-img" src={UserIcon} alt="" />
72 <span> 72 <span>
73 <img src={LoginIcon} alt="Sign in through Steam" /> 73 <img src={LoginIcon} alt="Sign in through Steam" />
74 </span> 74 </span>