Merge pull request #1019 from ae-utbm/calendar-fix

Fix wrong overflow on chrome for calendar
This commit is contained in:
Bartuccio Antoine 2025-02-14 13:20:04 +01:00 committed by GitHub
commit 169e9ea55a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,10 +75,10 @@ ics-calendar {
} }
td { td {
overflow-x: visible; // Show events on multiple days overflow: visible; // Show events on multiple days
} }
//Reset from style.scss //Reset from style.scss
table { table {
box-shadow: none; box-shadow: none;
border-radius: 0px; border-radius: 0px;
@ -86,13 +86,13 @@ ics-calendar {
margin: 0px; margin: 0px;
} }
// Reset from style.scss // Reset from style.scss
thead { thead {
background-color: white; background-color: white;
color: black; color: black;
} }
// Reset from style.scss // Reset from style.scss
tbody>tr { tbody>tr {
&:nth-child(even):not(.highlight) { &:nth-child(even):not(.highlight) {
background: white; background: white;