Feat/SW-965 select rate modify room * feat(SW-965): added new state for modify room and smaller fixes * feat(SW-965): update state handling of modifyRateIndex * fix: adjust scroll animation to handle modifyRateIndex * fix: room state logic and removed unused css class Approved-by: Pontus Dreij Approved-by: Arvid Norlin
45 lines
773 B
CSS
45 lines
773 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);
|
|
}
|
|
|
|
@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;
|
|
}
|
|
}
|