Profile page

- add arrow to see more stat on dashboard
This commit is contained in:
Kum1ta
2024-11-17 00:35:47 +01:00
parent ead5b1d23a
commit 3647853e0c
4 changed files with 76 additions and 7 deletions

View File

@ -103,6 +103,7 @@
display: flex;
justify-content: space-between;
margin-top: 100px;
position: relative;
}
#profil .dashboard {
@ -111,6 +112,7 @@
height: 42vh;
padding: 20px;
text-align: center;
position: relative;
}
#profil .history #scroll-match {
@ -261,6 +263,36 @@
cursor: pointer;
}
#profil .dashboard h3 {
margin-top: 10px;
}
#profil .dashboard .button-dashboard {
background-color: #aeaeae;
color: white;
border: none;
padding: 10px 20px;
border-radius: 10px;
font-size: 1rem;
cursor: pointer;
}
#profil .dashboard .button-dashboard:focus {
outline: none;
}
#profil .contentStats .dashboard-line {
width: 100%;
text-align: left;
margin-bottom: 20px;
position: relative;
}
#profil .contentStats .dashboard-line span {
font-weight: bold;
position: absolute;
right: 0;
}
@media (max-width: 700px){
#profil .container {