w-aura/src/components/FeedbackPage/styles.module.css
Денис Катаев ca220dfdf7 Preview/discount pages
2024-02-21 06:24:50 +00:00

60 lines
857 B
CSS

.page {
flex: auto;
height: calc(100vh - 50px);
max-height: -webkit-fill-available;
justify-content: center;
gap: 16px;
}
.reviews {
display: flex;
flex-direction: row;
overflow-x: scroll;
width: 100vw;
max-width: 560px;
padding: 0 32px;
gap: 24px;
}
.review {
display: flex;
flex-direction: column;
gap: 16px;
min-width: 300px;
}
.images {
display: flex;
align-items: flex-end;
gap: 18px;
width: 100%;
justify-content: flex-start;
}
.profile-picture {
width: 96px;
height: 96px;
border-radius: 100%;
object-fit: cover;
object-position: center;
}
.stars {
width: 116px;
margin-bottom: 14px;
}
.text {
color: #000;
font-weight: 600;
padding: 18px;
background-color: #e2e0e0;
border-radius: 24px;
margin-bottom: 8px;
}
.header-container {
display: flex;
flex-direction: column;
}