tanuki-s-forum/front/src/styles/UserPage.css

47 lines
779 B
CSS

.user-page {
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
width: 100%;
gap: 20px;
}
.user {
width: 97%;
border: 1px solid #270722;
padding: 10px;
display: flex;
flex-direction: column;
background-color: #fff6fd;
}
.user-top {
display: flex;
align-items: center;
gap: 10px;
}
.user-page-pfp {
width: 50px;
height: 50px;
border-radius: 50%;
}
.user-messages {
width: 97%;
border: 1px solid #270722;
padding: 10px;
display: flex;
flex-direction: column;
background-color: #fff6fd;
}
.messages-list {
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
gap: 10px;
}