comparison client/src/components/systemconfiguration/Systemconfiguration.vue @ 2534:bb5286acfee2

client: reduced spacings between and inside boxes and more compact main menu
author Markus Kottlaender <markus@intevation.de>
date Thu, 07 Mar 2019 12:15:14 +0100
parents f185503ef35a
children c6fba10926cc
comparison
equal deleted inserted replaced
2533:de4dc3d16647 2534:bb5286acfee2
1 <template> 1 <template>
2 <div class="d-flex flex-row"> 2 <div class="d-flex flex-row">
3 <Spacer></Spacer> 3 <Spacer></Spacer>
4 <div class="card sysconfig mt-3 shadow-xs"> 4 <div class="card sysconfig mt-2 shadow-xs">
5 <UIBoxHeader icon="wrench" title="Systemconfiguration" /> 5 <UIBoxHeader icon="wrench" title="Systemconfiguration" />
6 <div class="card-body text-left"> 6 <div class="card-body text-left">
7 <PDFTemplates /> 7 <PDFTemplates />
8 <ColorSettings v-if="isSysAdmin" /> 8 <ColorSettings v-if="isSysAdmin" />
9 </div> 9 </div>
12 </div> 12 </div>
13 </template> 13 </template>
14 14
15 <style scoped lang="scss"> 15 <style scoped lang="scss">
16 .sysconfig { 16 .sysconfig {
17 margin-right: $offset; 17 margin-right: $small-offset;
18 width: 100%; 18 width: 100%;
19 height: 100%; 19 height: 100%;
20 } 20 }
21 </style> 21 </style>
22 22