From 733c4c536dd7c4206b596dd594b777a90526a6ea Mon Sep 17 00:00:00 2001 From: Daria Golova Date: Mon, 21 Nov 2022 18:56:11 +0300 Subject: [PATCH] =?UTF-8?q?WIP=20=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=BB=D0=B0=20=D1=81=D1=82=D0=B8=D0=BB=D1=8C=20=D0=BA=D0=BD?= =?UTF-8?q?=D0=BE=D0=BF=D0=BE=D0=BA,=20=D1=80=D0=B0=D1=81=D1=81=D1=82?= =?UTF-8?q?=D0=B0=D0=B2=D0=B8=D0=BB=D0=B0=20=D0=B7=D0=B0=D0=BF=D1=8F=D1=82?= =?UTF-8?q?=D1=8B=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/base/BaseButton.vue | 8 +-- src/components/base/BaseInput.vue | 3 +- src/pages/calendar/TheCalendar.vue | 56 +++++++++---------- .../components/CalendarBackground.vue | 2 +- .../components/CalendarClockColumn.vue | 4 +- .../calendar/components/CalendarColumn.vue | 24 ++++---- .../CalendarColumnHeaderCheckbox.vue | 2 +- .../calendar/components/CalendarEventCard.vue | 12 ++-- .../CalendarEventDescriptionCard.vue | 2 +- .../components/CalendarFormAddEvent.vue | 6 +- .../components/CalendarLayoutSwitch.vue | 4 +- .../calendar/components/CalendarSchedule.vue | 48 ++++++++-------- .../clients/components/ClientsTableHat.vue | 34 ++++++----- 13 files changed, 106 insertions(+), 99 deletions(-) diff --git a/src/components/base/BaseButton.vue b/src/components/base/BaseButton.vue index 7790cc5..07c0363 100644 --- a/src/components/base/BaseButton.vue +++ b/src/components/base/BaseButton.vue @@ -3,20 +3,20 @@ :disabled="disabled", :class="{'rounded': rounded, 'outlined': outlined, 'outlined-red': outlinedRed, 'secondary': secondary, 'confirm': confirm, 'added': added}" :style="{height: size + 'px', minWidth: size + 'px'}" - ) + ) .button-container span.icon-container( :class="leftIcon", v-if="leftIcon", :style="{fontSize: iconLeftSize + 'px'}" - ) + ) slot .split(v-if="split") span.icon-container( :class="rightIcon", - v-if="rightIcon" + v-if="rightIcon", :style="{fontSize: iconRightSize + 'px', marginLeft: marginLeftIcon + 'px'}" - ) + )