changeset 3588:cffa99aa523c

client: systemconfiguration: made container scrollable for more configuration options
author Markus Kottlaender <markus@intevation.de>
date Tue, 04 Jun 2019 12:12:30 +0200
parents a9d140c7db8d
children 033366f94abf
files client/src/components/systemconfiguration/Systemconfiguration.vue
diffstat 1 files changed, 3 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/systemconfiguration/Systemconfiguration.vue	Tue Jun 04 12:06:36 2019 +0200
+++ b/client/src/components/systemconfiguration/Systemconfiguration.vue	Tue Jun 04 12:12:30 2019 +0200
@@ -1,9 +1,9 @@
 <template>
-  <div class="d-flex flex-row">
+  <div class="d-flex h-100">
     <Spacer />
-    <div class="card sysconfig mt-2 shadow-xs">
+    <div class="card my-2 mr-2 flex-fill shadow-xs">
       <UIBoxHeader icon="wrench" :title="systemconfigurationLabel" />
-      <div class="card-body text-left">
+      <div class="card-body text-left flex-fill" style="overflow: auto">
         <PDFTemplates />
         <ColorSettings v-if="isSysAdmin" />
       </div>
@@ -12,14 +12,6 @@
   </div>
 </template>
 
-<style scoped lang="scss">
-.sysconfig {
-  margin-right: $small-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.