60 lines
857 B
CSS
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;
|
|
}
|