Fixed extra borders at edges

This commit is contained in:
BordedDev 2025-01-16 23:05:13 +01:00
parent a9d1fd2c62
commit dfe51421ab

View File

@ -26,6 +26,14 @@
border-left: none; border-left: none;
border-top: 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 */ /* Cross bars */
&:nth-child(3n):not(:nth-child(9n)) { &:nth-child(3n):not(:nth-child(9n)) {
border-right-color: black; border-right-color: black;