36 lines
718 B
SCSS
36 lines
718 B
SCSS
![]() |
#profile-container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
gap: 20px;
|
||
|
margin-top: 15px;
|
||
|
|
||
|
#title-container {
|
||
|
#title {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.profile-modifier-container {
|
||
|
border: 1px dashed black;
|
||
|
width: 500px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
padding: 10px;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
gap: 10px;
|
||
|
|
||
|
.profile-modifier-title {
|
||
|
color: rgb(70, 70, 70);
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.profile-modifier-ipt {
|
||
|
text-align: center;
|
||
|
width: 50%;
|
||
|
height: 30px;
|
||
|
}
|
||
|
}
|
||
|
}
|