feat(SW-1710): add access checks to my stay page for viewing booking
This commit is contained in:
@@ -1,9 +1,12 @@
|
||||
.form {
|
||||
box-shadow: var(--popup-box-shadow);
|
||||
padding: var(--Spacing-x3) 0;
|
||||
display: grid;
|
||||
gap: var(--Spacing-x3);
|
||||
}
|
||||
|
||||
.form > div {
|
||||
padding: var(--Spacing-x3);
|
||||
.form > div:not(.buttons) {
|
||||
padding: 0 var(--Spacing-x3);
|
||||
}
|
||||
|
||||
.inputs {
|
||||
@@ -12,23 +15,23 @@
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.inputs {
|
||||
.grid {
|
||||
grid-template-areas:
|
||||
"a a"
|
||||
"b c"
|
||||
"d d";
|
||||
}
|
||||
|
||||
.inputs > div:nth-child(1) {
|
||||
.grid > div:nth-child(1) {
|
||||
grid-area: a;
|
||||
}
|
||||
.inputs > div:nth-child(2) {
|
||||
.grid > div:nth-child(2) {
|
||||
grid-area: b;
|
||||
}
|
||||
.inputs > div:nth-child(3) {
|
||||
.grid > div:nth-child(3) {
|
||||
grid-area: c;
|
||||
}
|
||||
.inputs > div:nth-child(4) {
|
||||
.grid > div:nth-child(4) {
|
||||
grid-area: d;
|
||||
}
|
||||
}
|
||||
@@ -38,9 +41,14 @@
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
border-top: 1px solid var(--Base-Border-Subtle);
|
||||
padding: var(--Spacing-x3) var(--Spacing-x3) 0;
|
||||
gap: var(--Spacing-x2);
|
||||
}
|
||||
|
||||
.buttons > button:only-child {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.buttons > button {
|
||||
min-width: 140px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user