Skip to content

Commit 5451b6d

Browse files
committed
improve readability with comments
1 parent ea088f3 commit 5451b6d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

webpack/sass/main.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,9 @@ code {
206206
.column {
207207
border-bottom: 0.1875rem solid $color-light-gray;
208208
}
209-
210-
.column:nth-last-child(-n + 3):nth-child(3n + 1), .column:nth-last-child(-n + 3):nth-child(3n + 1) ~ .column
209+
/* last row, irrespective of the number of elements */
210+
.column:nth-last-child(-n + 3):nth-child(3n + 1), /* first element of the last row */
211+
.column:nth-last-child(-n + 3):nth-child(3n + 1) ~ .column /* all its following elements */
211212
{
212213
border-bottom: none;
213214
}

0 commit comments

Comments
 (0)