account page is done

This commit is contained in:
Nikolai Petukhov
2024-09-28 10:34:06 +03:00
parent 9d13f571d9
commit e6231f86b4
7 changed files with 88 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
.account-buttons {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.account-buttons a {
display: flex;
font-size: 1.5vw;
transition: color 0.2s ease-in;
width: 20vw;
margin-top: 2vw;
}
.account-buttons a:hover {
color: black;
}
@media only screen and (max-width: 800px) {
.account-buttons a {
font-size: 2.5vh;
width: 60vw;
margin-top: 3vh;
}
}