-
Notifications
You must be signed in to change notification settings - Fork 20
styles
ly525 edited this page Jan 3, 2019
·
3 revisions
- Why style scoped and what style scoped does?
- Do I need style scoped for the date-range-picker? the advantages and disadvantages of it?
- use
box-sizing:border-box;
for input box
without
box-sizing: border-box;
because the the icon is inside the input box with padding-left, so the input box is pushed to the right.
[Solved] add
box-sizing: border-box
for input box
- Items that do not belong to the current month( 不属于当前月份的 item)
td,
th {
&.off,
&.off.in-range,
&.off.start-date,
&.off.end-date {
background-color: #fff;
border-color: transparent;
color: #999;
}
}
without
.off
style:
in working!