Skip to content

Commit b1ce8a8

Browse files
committed
fix(month.vue): change vuec-7col columns class (prevent conflict with bootstrap)
1 parent b933ede commit b1ce8a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/core/month.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div
1010
v-for="(wd, index) in weekDays"
1111
:key="index"
12-
class="col">
12+
class="vuec-col">
1313
<div class="vuec-week-content">
1414
<slot
1515
v-bind="{wd, index}"
@@ -33,7 +33,7 @@
3333
:disabled="day.disabled"
3434
:selectable="!day.disabled && selectable"
3535
:selected="day.selected"
36-
class="col"
36+
class="vuec-col"
3737
@click="toggleDay"
3838
@hover="$emit('hover', $event)"
3939
@blur="$emit('blur', $event)"
@@ -176,14 +176,14 @@ export default {
176176
display: flex;
177177
flex-wrap: wrap;
178178
flex-direction: row;
179-
.col {
179+
.vuec-col {
180180
max-width: 14.285714285714285714285714285714% !important;
181181
flex: 1 1 14.28571%;
182182
}
183183
}
184184
.vuec-week-nav {
185185
text-align: center;
186-
.col {
186+
.vuec-col {
187187
position: relative;
188188
}
189189
.vuec-week-placeholder {

0 commit comments

Comments
 (0)