We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4616a8f + 5451b6d commit f4a07b8Copy full SHA for f4a07b8
webpack/sass/main.scss
@@ -206,6 +206,12 @@ code {
206
.column {
207
border-bottom: 0.1875rem solid $color-light-gray;
208
}
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 */
212
+ {
213
+ border-bottom: none;
214
+ }
215
216
.blog-entry {
217
@extend .padding-vertical-larger;
0 commit comments