diff options
Diffstat (limited to 'src/main/resources/fxml')
-rw-r--r-- | src/main/resources/fxml/RegistrationWindow.fxml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/resources/fxml/RegistrationWindow.fxml b/src/main/resources/fxml/RegistrationWindow.fxml index 2e91d36..c369a70 100644 --- a/src/main/resources/fxml/RegistrationWindow.fxml +++ b/src/main/resources/fxml/RegistrationWindow.fxml @@ -44,18 +44,18 @@ <Insets topRightBottomLeft="-12"/> </GridPane.margin> </AnchorPane> - <VBox> <!--"Neue Anmeldung", "von bis"--> - <Text text="Neue Anmeldung" styleClass="text-big" style="-fx-fill: white;"/> + <VBox spacing="3"> <!--"Neue Anmeldung", "von bis"--> + <Label text="Neue Anmeldung" styleClass="text-big, text-white, text-bold"/> <HBox spacing="6" alignment="CENTER"> - <Text text="von" style="-fx-fill: white;"/> + <Label text="von" styleClass="text-medium, text-white"/> <ComboBox value="8:00"/> - <Text text="bis" style="-fx-fill: white;"/> + <Label text="bis" styleClass="text-medium, text-white"/> <ComboBox value="16:00"/> </HBox> </VBox> <VBox GridPane.columnIndex="2"> - <Hyperlink text="schließen" styleClass="text-big, text-white"/> - <Button text="ERSTELLEN" styleClass="button-main"/> + <Hyperlink text="schließen" styleClass="text-small, text-white"/> + <Button text="ERSTELLEN" styleClass="button-main, text-medium"/> </VBox> </GridPane> |