Skip to content

Commit

Permalink
fix(Calendar): cells border radius
Browse files Browse the repository at this point in the history
  • Loading branch information
tymmesyde committed Jul 5, 2024
1 parent 98b3891 commit b6eef9a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/routes/Calendar/Table/Cell/Cell.less
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
border-radius: var(--border-radius) 0 0 0;
}

&:nth-child(7) {
border-radius: 0 var(--border-radius) 0 0;
}

&:nth-child(29) {
border-radius: 0 0 0 var(--border-radius);
}

&:last-child {
border-radius: 0 0 var(--border-radius) 0;
}
Expand Down
1 change: 0 additions & 1 deletion src/routes/Calendar/Table/Table.less
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 1px;
border-radius: var(--border-radius);
}
}

Expand Down

0 comments on commit b6eef9a

Please sign in to comment.