Sudoku review #1

Open
BordedDev wants to merge 19 commits from BordedDev/sudoku:main into main
Showing only changes of commit dfe51421ab - Show all commits

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;