aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/fxml/employeeList.fxml
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/fxml/employeeList.fxml')
-rw-r--r--src/main/resources/fxml/employeeList.fxml17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/resources/fxml/employeeList.fxml b/src/main/resources/fxml/employeeList.fxml
new file mode 100644
index 0000000..85f693c
--- /dev/null
+++ b/src/main/resources/fxml/employeeList.fxml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.geometry.Insets?>
+<?import javafx.scene.layout.FlowPane?>
+<FlowPane
+ xmlns="http://javafx.com/javafx/9.0.1"
+ xmlns:fx="http://javafx.com/fxml/1"
+ fx:controller="at.ac.tuwien.sepm.assignment.groupphase.missioncontrol.controller.EmployeeListController"
+ fx:id="flowPaneEmployeeList"
+ stylesheets="@/styles/main.css"
+ prefWidth="${flowPaneEmployeeList.parent.width}"
+ prefHeight="${flowPaneEmployeeList.parent.height}"
+ styleClass="bg-gray-orange">
+ <padding>
+ <Insets bottom="10.0"/>
+ </padding>
+</FlowPane>