v-calendar
Version:
A clean and extendable plugin for building simple attributed calendars in Vue.js.
28 lines (24 loc) • 397 B
CSS
/* Resets usually supplied by Tailwind @base */
.vc-reset {
&,
& * {
line-height: 1.5;
box-sizing: border-box;
&:focus {
outline: none;
}
}
& button,
& [role='button'] {
cursor: pointer;
}
}
.vc-box-center-center {
@apply vc-flex vc-justify-center vc-items-center;
}
.vc-border,
.vc-border-2,
.vc-border-3 {
border-style: solid;
}
@tailwind utilities;