Skip to content

Commit

Permalink
Css: Add borders for column titles in calendar
Browse files Browse the repository at this point in the history
  • Loading branch information
raviks789 committed Oct 19, 2023
1 parent d5539b6 commit 3218f52
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions public/css/calendar.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

.header {
display: grid;
grid-gap: 1px;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
grid-template-columns: repeat(@days, minmax(2em, 1fr));

Expand Down Expand Up @@ -379,6 +377,10 @@
}
}

.column-title:not(:first-of-type) {
border-left: 1px solid @gray-lighter;
}

.row-title {
color: @text-color-light;
}
Expand Down

0 comments on commit 3218f52

Please sign in to comment.