Skip to content

Commit 8f77bd7

Browse files
committed
🔨 Clean up and temp style fixes
1 parent e02997f commit 8f77bd7

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

frontend/src/views/BookerView/index.vue

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ export default {
150150
class="booking-success-container"
151151
>
152152
<booking-view-success
153-
:attendee-email="attendee.email"
154153
:selected-event="selectedEvent"
154+
:attendee="attendee"
155155
:requested="appointment?.booking_confirmation"
156156
/>
157157
</main>
@@ -171,28 +171,25 @@ export default {
171171
display: flex;
172172
justify-content: center;
173173
align-items: center;
174-
height: 100vh;
175-
user-select: none;
174+
height: calc(100vh - 30rem); /* FIXME: Set footer alignment to the bottom of the screen */
176175
}
177176
178177
.booking-invalid-container {
179178
display: flex;
180179
justify-content: center;
181180
align-items: center;
182-
height: 100vh;
183-
user-select: none;
181+
height: calc(100vh - 30rem); /* FIXME: Set footer alignment to the bottom of the screen */
184182
flex-direction: column;
185183
gap: 2rem;
186184
padding: 0 1rem;
187185
}
188186
189187
.booking-success-container {
190188
display: flex;
191-
height: 100vh;
192-
user-select: none;
193-
flex-direction: column-reverse;
194-
align-items: center;
195-
justify-content: space-evenly;
189+
height: calc(100vh - 20rem); /* FIXME: Set footer alignment to the bottom of the screen */
190+
flex-direction: column;
191+
align-items: start;
192+
justify-content: center;
196193
padding: 0 1rem;
197194
}
198195
@@ -207,6 +204,7 @@ export default {
207204
@media (--md) {
208205
.booking-success-container {
209206
flex-direction: row;
207+
height: calc(100vh - 29rem); /* FIXME: Set footer alignment to the bottom of the screen */
210208
}
211209
}
212210

0 commit comments

Comments
 (0)