Browse Source

Fix vertically divided grid spacing in top row

pull/3975/head
Jack Lukic 8 years ago
parent
commit
aa9304ec42
1 changed files with 8 additions and 0 deletions
  1. 8
      src/definitions/collections/grid.less

8
src/definitions/collections/grid.less

@ -1046,12 +1046,20 @@
margin-bottom: 0em;
}
/* No divider on first column on row */
.ui.divided.grid:not([class*="vertically divided"]) > .column:first-child,
.ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
box-shadow: none;
}
/* No space on top of first row */
.ui[class*="vertically divided"].grid > .row:first-child > .column {
margin-top: 0em;
}
/* Divided Row */
.ui.grid > .divided.row > .column {
box-shadow: @dividedBorder;

Loading…
Cancel
Save