51 lines
850 B
CSS
51 lines
850 B
CSS
.selectedRoomPanel {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
}
|
|
|
|
.modifyButtonContainer {
|
|
position: absolute;
|
|
right: var(--Spacing-x2);
|
|
bottom: var(--Spacing-x2);
|
|
}
|
|
|
|
.imageContainer {
|
|
width: 187px;
|
|
height: 105px;
|
|
position: relative;
|
|
border-radius: var(--Corner-radius-Small);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.titleContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
div.selectedRoomPanel p.subtitle {
|
|
padding-bottom: var(--Spacing-x1);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.imageContainer {
|
|
width: 120px;
|
|
height: 80px;
|
|
}
|
|
|
|
.imageAndModifyButtonContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
.modifyButtonContainer {
|
|
position: relative;
|
|
bottom: 0;
|
|
right: 0;
|
|
}
|
|
}
|