view client/src/components/systemconfiguration/Systemconfiguration.vue @ 2387:f185503ef35a

client: unified box's header styles by creating a reusable component The clients html/css and resulting look and feel of the app is partially very inconsistent. By moving code to more small and reusable components consistency will hopefully be increased.
author Markus Kottlaender <markus@intevation.de>
date Mon, 25 Feb 2019 15:02:34 +0100
parents 5f3110aa1ad1
children bb5286acfee2
line wrap: on
line source

<template>
  <div class="d-flex flex-row">
    <Spacer></Spacer>
    <div class="card sysconfig mt-3 shadow-xs">
      <UIBoxHeader icon="wrench" title="Systemconfiguration" />
      <div class="card-body text-left">
        <PDFTemplates />
        <ColorSettings v-if="isSysAdmin" />
      </div>
      <!-- card-body -->
    </div>
  </div>
</template>

<style scoped lang="scss">
.sysconfig {
  margin-right: $offset;
  width: 100%;
  height: 100%;
}
</style>

<script>
/* This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 * Bernhard Reiter <bernhard@intevation.de>
 * Markus Kottländer <markus@intevation.de>
 */
import { mapGetters } from "vuex";

export default {
  name: "systemconfiguration",
  components: {
    Spacer: () => import("../Spacer"),
    PDFTemplates: () => import("./PDFTemplates"),
    ColorSettings: () => import("./ColorSettings")
  },
  computed: {
    ...mapGetters("user", ["isSysAdmin"])
  }
};
</script>