Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
fix: [XSOS-6275] fix datepicker code format error
Browse files Browse the repository at this point in the history
Signed-off-by: csonchen <cson_chensheng@163.com>
  • Loading branch information
csonchen committed Aug 22, 2023
1 parent 0bbe1b7 commit cd7924f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/components/DatePicker/style.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
@import '../../style/variables.scss';
.rc-calendar {
border-radius: $radius-4-dropdown;

.rc-calendar-header {
.rc-calendar-prev-month-btn::after {
content: '\3C';
display: block;
transform: scale(0.5, 1.2);
}
.rc-calendar-prev-year-btn::after {
content: '\3C\3C';
display: block;
transform: scale(0.5, 1.2);
}
.rc-calendar-next-month-btn:after {
content: '\3E';
display: block;
transform: scale(0.5, 1.2);
}
.rc-calendar-next-year-btn:after {
content: '\3E\3E';
display: block;
transform: scale(0.5, 1.2);
}
}
}
.rc-calendar-picker {
z-index: 1060;
Expand Down
5 changes: 5 additions & 0 deletions src/components/Tabs/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@
&:has(a.active) {
border-top: 2px solid $primary-normal;
}

.nav-link {
position: relative;
z-index: 1;
}
}

.Tabs {
Expand Down

0 comments on commit cd7924f

Please sign in to comment.