aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/fxml/employeeList.fxml
blob: 5bcce1c97f185d0e2d30785ae9902a5fbd1b7a34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.einsatzverwaltung.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>