We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6933ff7 commit f0cea66Copy full SHA for f0cea66
projects/train-platform/src/booking/booking/booking.component.css
@@ -0,0 +1,18 @@
1
+.booking-options {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: 1rem;
5
+ margin: 0.5rem;
6
+}
7
+
8
+.booking-options label {
9
+ display: inline-block;
10
+ width: 360px;
11
+ margin-right: 1rem;
12
13
14
+.booking-actions {
15
16
+ flex-direction: row-reverse;
17
18
projects/train-platform/src/booking/booking/booking.component.html
@@ -1,4 +1,4 @@
-<div>
+<div class="booking-options">
<div>
<label>{{ "booking.reserveSeatQuestion" | translate }}</label>
<input type="checkbox" [(ngModel)]="reserveSeat" />
@@ -9,6 +9,6 @@
</div>
+<div class="booking-actions">
<button (click)="book()">{{ "booking.bookAction" | translate }}</button>
0 commit comments