Fixed extra borders at edges

This commit is contained in:
Benjamin Claassen 2025-01-16 23:05:13 +01:00
parent 777573e71d
commit 1868b38219
No known key found for this signature in database
GPG Key ID: C5F495EAE56673BF

View File

@ -26,6 +26,14 @@
border-left: none;
border-top: none;
/* Disable borders at the edges */
&:nth-child(9n) {
border-right: none;
}
&:nth-last-child(-n + 9) {
border-bottom: none;
}
/* Cross bars */
&:nth-child(3n):not(:nth-child(9n)) {
border-right-color: black;