File: split.scss

package info (click to toggle)
cockpit-machines 347-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 275,980 kB
  • sloc: javascript: 708,138; python: 14,367; cpp: 11,141; sh: 932; makefile: 159; xml: 88
file content (24 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@use '../../sass-utilities' as *;

@include pf-root($split) {
  --#{$stack}--m-gutter--Gap: var(--pf-t--global--spacer--gutter--default);
}

.#{$split} {
  display: flex;
  padding: 0;
  margin: 0;

  &.pf-m-wrap {
    flex-wrap: wrap; // make default in a breaking change release
  }

  @at-root .#{$split}__item.pf-m-fill,
  & > .pf-m-fill {
    flex-grow: 1;
  }
}

.#{$split}.pf-m-gutter {
  gap: var(--#{$stack}--m-gutter--Gap);
}