We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea088f3 commit 5451b6dCopy full SHA for 5451b6d
webpack/sass/main.scss
@@ -206,8 +206,9 @@ code {
206
.column {
207
border-bottom: 0.1875rem solid $color-light-gray;
208
}
209
-
210
- .column:nth-last-child(-n + 3):nth-child(3n + 1), .column:nth-last-child(-n + 3):nth-child(3n + 1) ~ .column
+ /* last row, irrespective of the number of elements */
+ .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 */
212
{
213
border-bottom: none;
214
0 commit comments