Merge pull request '95-fix-home-screen-account-button-ui' (#124) from 95-fix-home-screen-account-button-ui into main

Reviewed-on: https://gitea.mregirouard.com/LibreTunes/LibreTunes/pulls/124
This commit is contained in:
2024-11-22 22:32:53 +00:00
4 changed files with 126 additions and 28 deletions

View File

@ -11,9 +11,19 @@
border-radius: 0.4rem;
margin: 0.2rem;
min-height: 6rem;
border: 2px solid rgba(89, 89, 89, 0.199);
border: 0.2rem solid rgba(89, 89, 89, 0.199);
padding: 0.5rem;
.profile-name {
display: flex;
flex-direction: column;
margin-left: 0.5rem;
h1 {
font-size: 1.2rem;
margin: 0;
}
}
.profile-icon {
display: inline-flex;
padding: 0.2rem;
@ -21,17 +31,23 @@
font-size: 2rem;
border-radius: 50%;
transition: all 0.3s;
height: max-content;
height: 45;
width: 45;
margin-left: auto;
.profile-image {
width: 100%;
height: 100%;
border-radius: 50%;
}
}
.profile-icon:hover {
transform: scale(1.1);
transform: scale(1.05);
background-color: rgba(255, 255, 255, 0.1);
}
.profile-icon:active {
transform: scale(0.8);
transform: scale(0.95);
}
.dropdown-container {
position: absolute;
@ -41,10 +57,10 @@
border-radius: 0.5rem;
width: 10rem;
z-index: 1;
background-color: red;
border: 1px solid grey;
background-color: #1c1c1c;
border: 0.2rem solid rgba(89, 89, 89, 0.199);
.dropdown-not-logged {
.dropdown-logged {
display: flex;
flex-direction: column;
width: 100%;
@ -53,21 +69,29 @@
h1 {
font-size: 1.2rem;
}
.profile-info {
display: flex;
width: 100%;
justify-content: center;
border-top: 0.2rem solid rgba(89, 89, 89, 0.199);
border-bottom: 0.2rem solid rgba(89, 89, 89, 0.199);
h1 {
font-size: 1rem;
margin-top: 0.5rem;
}
}
.auth-button {
margin-top: 0.5rem;
padding: 0.5rem;
border-radius: 0.5rem;
background-color: #1c1c1c;
border: 0.2rem solid rgba(89, 89, 89, 0.199);
color: white;
cursor: pointer;
transition: all 0.3s;
margin-bottom: 0.5rem;
}
}
}
.dropdown-container:before {
content: "";
position: absolute;
top: -0.4rem;
right: 0.92rem;
width: 10px;
height: 10px;
transform: rotate(45deg);
background-color: red;
border-left: 1px solid grey;
border-top: 1px solid grey;
}
}
}