diff --git a/src/components/base/BaseInput.vue b/src/components/base/BaseInput.vue
index 0825780..ededb78 100644
--- a/src/components/base/BaseInput.vue
+++ b/src/components/base/BaseInput.vue
@@ -1,6 +1,6 @@
.input-wrapper.flex.gap-x-2.px-4.box-border(class="py-2.5" :style="{ minWidth: widthInput + 'px' }")
- input.w-full.outline-0.text-base.not-italic(:value="value" :type="type" @input="$emit('update:value', $event.target.value)" :placeholder="placeholder" :maxlength="maxLength")
+ input.w-full.outline-0.text-base.not-italic(:style="{ backgroundColor: backgroundInput, fontSize: fontSizeInput }" :value="value" :type="type" @input="$emit('update:value', $event.target.value)" :placeholder="placeholder" :maxlength="maxLength")
.slot(v-if="withIcon" :class="iconPosition")
slot.cursor-pointer
@@ -24,6 +24,8 @@ export default {
default: "Поиск",
},
widthInput: Number,
+ backgroundInput: String,
+ fontSizeInput: String,
},
};
diff --git a/src/pages/calendar/TheCalendar.vue b/src/pages/calendar/TheCalendar.vue
index d03119c..80b3176 100644
--- a/src/pages/calendar/TheCalendar.vue
+++ b/src/pages/calendar/TheCalendar.vue
@@ -31,10 +31,34 @@ export default {
},
eventsData: [],
team: [
- { id: 1, name: "Захарова А.О.", avatar: img },
- { id: 2, name: "Константинопольская Ю.В.", avatar: img },
- { id: 3, name: "Коломойцев И.К.", avatar: img },
- { id: 4, name: "Зайцев В.С.", avatar: img },
+ {
+ id: 1,
+ last_name: "Гагарин",
+ first_name: "Юрий",
+ patronymic: "Алексеевич",
+ avatar: img,
+ },
+ {
+ id: 2,
+ last_name: "Константинопольская",
+ first_name: "Юлия",
+ patronymic: "Витальевна",
+ avatar: img,
+ },
+ {
+ id: 3,
+ last_name: "Коломойцев",
+ first_name: "Игорь",
+ patronymic: "Константинович",
+ avatar: img,
+ },
+ {
+ id: 4,
+ last_name: "Зайцев",
+ first_name: "Валерий",
+ patronymic: "Сергеевич",
+ avatar: img,
+ },
],
};
},
diff --git a/src/pages/calendar/components/CalendarClockColumn.vue b/src/pages/calendar/components/CalendarClockColumn.vue
index db06052..f289571 100644
--- a/src/pages/calendar/components/CalendarClockColumn.vue
+++ b/src/pages/calendar/components/CalendarClockColumn.vue
@@ -55,7 +55,6 @@ export default {
diff --git a/tailwind.config.js b/tailwind.config.js
index 10a01eb..b100f17 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -27,7 +27,9 @@ module.exports = {
"3px": "3px",
"6px": "6px",
"10px": "10px",
+ "10.5px": "10.5px",
"13px": "13px",
+ "15px": "15px",
"19px": "19px",
"45px": "45px",
"74px": "74px",