diff --git a/src/components/Notifications/NotificationItem.vue b/src/components/Notifications/NotificationItem.vue index a2d8559..c471d05 100644 --- a/src/components/Notifications/NotificationItem.vue +++ b/src/components/Notifications/NotificationItem.vue @@ -3,8 +3,8 @@ .notification-content.flex.mr-16 .grid(:class="{'grid-rows': message}") .text-white.text-xs.icon.row-span-full.flex.justify-center.items-center(:class="iconClass") - .text-white.text-base.font-bold(v-if="title") {{ title }} - .text-white.text-base(v-if="message") {{ message }} + .text-white.text-base.font-black(v-if="title") {{ title }} + .text-white.text-base.font-semibold(v-if="message") {{ message }} .icon-cancel.cursor-pointer.text-white.opacity-50.text-sm(class="hover:opacity-100 active:opacity-75", @click="delNotification") diff --git a/src/components/base/BaseInputDate.vue b/src/components/base/BaseInputDate.vue index b433ccf..14b7fc4 100644 --- a/src/components/base/BaseInputDate.vue +++ b/src/components/base/BaseInputDate.vue @@ -49,4 +49,5 @@ export default { background: url("../../assets/icons/calendar-input.svg") no-repeat 100% 50% &::-webkit-calendar-picker-indicator opacity: 0 + cursor: pointer diff --git a/src/components/base/BaseInputTime.vue b/src/components/base/BaseInputTime.vue index 2a586e8..2685fc7 100644 --- a/src/components/base/BaseInputTime.vue +++ b/src/components/base/BaseInputTime.vue @@ -43,4 +43,6 @@ export default { border-radius: 4px background-color: var(--default-white) color: var(--font-black-color) +input::-webkit-calendar-picker-indicator + cursor: pointer diff --git a/src/components/base/BaseSelect.vue b/src/components/base/BaseSelect.vue index 8a28567..1ce144d 100644 --- a/src/components/base/BaseSelect.vue +++ b/src/components/base/BaseSelect.vue @@ -1,7 +1,8 @@