37 lines
618 B
CSS
37 lines
618 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: 240px;
|
|
height: 160px;
|
|
position: relative;
|
|
}
|
|
|
|
@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;
|
|
}
|
|
}
|