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