add page profile

This commit is contained in:
kuwsh1n
2024-03-09 21:18:58 +03:00
parent c1c2f7cfc5
commit 16a82736a4
9 changed files with 156 additions and 43 deletions

View File

@ -40,7 +40,7 @@
height: 100%;
&__header {
width: 100%;
height: 20%;
height: 30%;
display: flex;
align-items: center;
justify-content: center;
@ -54,8 +54,7 @@
}
&__body {
width: 100%;
height: 60%;
// border: 1px solid red;
height: 50%;
display: flex;
justify-content: space-around;
flex-direction: column;

View File

@ -1,7 +1,41 @@
.main {
width: 100%;
height: 100%;
}
.wrapper {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.profile {
width: 70%;
height: 70%;
box-shadow: 0 0 5px 1px rgb(200, 200, 200);
padding: 1.5%;
&__wrapper {
&__header {
width: 100%;
height: 15%;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
h3 {
font-size: 25px;
font-family: "Montserrat", sans-serif;
color: rgb(100, 100, 100);
}
}
&__body {
width: 100%;
height: 85%;
&__item {
padding: 5px;
}
}
}
}