summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/LogModule.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/LogModule.vue')
-rw-r--r--webapp/src/components/LogModule.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/webapp/src/components/LogModule.vue b/webapp/src/components/LogModule.vue
index cb7f035..386b46b 100644
--- a/webapp/src/components/LogModule.vue
+++ b/webapp/src/components/LogModule.vue
@@ -42,7 +42,7 @@
<v-layout>
<v-flex xl10 offset-xl1 lg12>
<v-card class="tabbar-card">
- <v-tabs v-model="tabs" grow hide-slider :dark="tabsDark" :color="tabsColor" :slider-color="tabsSliderColor">
+ <v-tabs v-model="tabs" grow hide-slider :dark="tabsDark" :background-color="tabsColor" :slider-color="tabsSliderColor">
<v-tab><v-icon class="tabbar-tabicon">error_outline</v-icon>{{ $t('systemLog') }}</v-tab>
</v-tabs>
</v-card>
@@ -66,11 +66,11 @@
</v-flex>
<v-flex xs12 md6 order-xs1 order-md2 class="text-md-right">
<div style="display: inline-block; white-space: nowrap">
- <span class="text-xs-right picker-label">{{ $t('from') }}</span>
+ <span class="text-right picker-label mr-2">{{ $t('from') }}</span>
<v-menu left offset-y :close-on-content-click="false" style="display: inline-block">
<template #activator="{ on }">
- <v-btn v-on="on" small class="date-picker-button"><v-icon small class="mr-1">today</v-icon>{{ filter.fromDate }}</v-btn>
+ <v-btn v-on="on" small class="date-picker-button mr-2"><v-icon small class="mr-1">today</v-icon>{{ filter.fromDate }}</v-btn>
</template>
<v-date-picker
:value="filter.fromDate"
@@ -98,11 +98,11 @@
</div>
<div style="display: inline-block; white-space: nowrap">
- <span class="text-xs-right picker-label">{{ $t('to') }}</span>
+ <span class="text-right picker-label mr-2">{{ $t('to') }}</span>
<v-menu v-model="toDateMenu" left offset-y :close-on-content-click="false" style="display: inline-block">
<template #activator="{ on }">
- <v-btn v-on="on" small class="date-picker-button">
+ <v-btn v-on="on" small class="date-picker-button mr-2">
<v-icon small class="mr-1">today</v-icon>
{{ filter.toDate ? filter.toDate : $t('today') }}
</v-btn>