Logout now pretty, working on quickbar elements

This commit is contained in:
2023-10-25 01:44:12 +03:00
parent a583f4b765
commit f164d220a1
2 changed files with 20 additions and 9 deletions

View File

@@ -23,7 +23,7 @@
height: 100px;
padding: 10px;
border-radius: 10px;
background-color: #d3d3d3;
background-color: #212942;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

View File

@@ -76,12 +76,11 @@
deleteCookie('refresh_token');
window.location.href = '/auth/login';
}
}}
>
}}>
Log out
</div>
</div>
</div>
</div>
</div>
<style>
@@ -130,10 +129,22 @@
#profileSpace {
margin-bottom: 20px;
display: flex;
flex-direction: row;
justify-content: center;
color:white;
flex-direction: column;
align-items: center;
color: white;
font-weight: 900;
font-size: larger;
}
#logout {
background: none;
cursor: pointer;
border-radius: 10px;
transition: background 0.3s ease;
padding: 5px;
}
#logout:hover {
background: rgba(128, 128, 128, 0.5);
}
</style>