comparison client/src/components/systemconfiguration/Systemconfiguration.vue @ 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 6c5364ff0abb
children d1bbfb9635ca
comparison
equal deleted inserted replaced
3587:a9d140c7db8d 3588:cffa99aa523c
1 <template> 1 <template>
2 <div class="d-flex flex-row"> 2 <div class="d-flex h-100">
3 <Spacer /> 3 <Spacer />
4 <div class="card sysconfig mt-2 shadow-xs"> 4 <div class="card my-2 mr-2 flex-fill shadow-xs">
5 <UIBoxHeader icon="wrench" :title="systemconfigurationLabel" /> 5 <UIBoxHeader icon="wrench" :title="systemconfigurationLabel" />
6 <div class="card-body text-left"> 6 <div class="card-body text-left flex-fill" style="overflow: auto">
7 <PDFTemplates /> 7 <PDFTemplates />
8 <ColorSettings v-if="isSysAdmin" /> 8 <ColorSettings v-if="isSysAdmin" />
9 </div> 9 </div>
10 <!-- card-body --> 10 <!-- card-body -->
11 </div> 11 </div>
12 </div> 12 </div>
13 </template> 13 </template>
14
15 <style scoped lang="scss">
16 .sysconfig {
17 margin-right: $small-offset;
18 width: 100%;
19 height: 100%;
20 }
21 </style>
22 14
23 <script> 15 <script>
24 /* This is Free Software under GNU Affero General Public License v >= 3.0 16 /* This is Free Software under GNU Affero General Public License v >= 3.0
25 * without warranty, see README.md and license for details. 17 * without warranty, see README.md and license for details.
26 * 18 *