22 lines
360 B
Vue
22 lines
360 B
Vue
<style scoped>
|
|
|
|
.todaybound {
|
|
|
|
display: flex; flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<template>
|
|
|
|
<div class="todaybound">
|
|
<MainCalendarTodayIs />
|
|
<MainCalendarTodayWeekday />
|
|
<MainCalendarTodayHoliday />
|
|
</div>
|
|
|
|
</template> |