fix style

This commit is contained in:
jxxghp
2023-07-22 21:30:39 +08:00
parent a668059bf7
commit c93499d435
4 changed files with 6 additions and 20 deletions
+1 -1
View File
@@ -1 +1 @@
VITE_API_BASE_URL=http://localhost:3001/api/v1/ VITE_API_BASE_URL=http://10.10.10.103:3001/api/v1/
+2 -6
View File
@@ -6,17 +6,13 @@
html { html {
min-height: calc(100% + env(safe-area-inset-top)); min-height: calc(100% + env(safe-area-inset-top));
} background: rgb(var(--v-theme-background));
@media screen and (max-width: 900px) {
html, body {
background: rgb(var(--v-theme-background));
}
} }
body { body {
overscroll-behavior-y: contain; overscroll-behavior-y: contain;
--webkit-overflow-scrolling: touch; --webkit-overflow-scrolling: touch;
background: rgb(var(--v-theme-background));
} }
body, body,
-2
View File
@@ -52,8 +52,6 @@
} }
/* router view transition fade-slide */ /* router view transition fade-slide */
.fade-slide-leave-active, .fade-slide-leave-active,
.fade-slide-enter-active { .fade-slide-enter-active {
+3 -11
View File
@@ -13,14 +13,6 @@ import { parseDate } from '@/@core/utils/formatters'
const calendarOptions: Ref<CalendarOptions> = ref({ const calendarOptions: Ref<CalendarOptions> = ref({
height: 'auto', height: 'auto',
locale: 'zh-cn', locale: 'zh-cn',
themeSystem: 'standard',
buttonText: {
today: '今天',
month: '月',
week: '周',
day: '日',
list: '列表',
},
plugins: [ plugins: [
dayGridPlugin, dayGridPlugin,
timeGridPlugin, timeGridPlugin,
@@ -124,7 +116,7 @@ onMounted(() => {
</VCard> </VCard>
</div> </div>
<div class="md:hidden"> <div class="md:hidden">
<VTooltip :text="arg.event.title"> <VTooltip :text="`${arg.event.title} ${arg.event.extendedProps.subtitle}`">
<template #activator="{ props }"> <template #activator="{ props }">
<VImg <VImg
height="60" height="60"
@@ -334,8 +326,8 @@ onMounted(() => {
} }
.v-application .fc .fc-daygrid-day-number { .v-application .fc .fc-daygrid-day-number {
padding-block: 0.5rem; padding-block: 0rem;
padding-inline: 0.75rem; padding-inline: 0rem;
} }
.v-application .fc .fc-list-event-dot { .v-application .fc .fc-list-event-dot {