Sha256: a12690b50cbdc2dbd34ad585ebddbe8c4bd604c07922914a05f1389ea5f08c10

Contents?: true

Size: 550 Bytes

Versions: 8

Compression:

Stored size: 550 Bytes

Contents

// Deprecated
// TODO: Replace TableObject with flexbox or a new Table component

// TableObject is a module for creating dynamically resizable elements that
// always sit on the same horizontal line (e.g., they never wrap). Using
// tables means it's cross browser friendly.

.TableObject {
  display: table;
}

// Place this on every "cell"
.TableObject-item {
  display: table-cell;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

// Place this on the largest or most important "cell"
.TableObject-item--primary {
  width: 99%;
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jekyll-v4-theme-primer-0.16.0 _sass/@primer/css/table-object/table-object.scss
jekyll-v4-theme-primer-0.15.0 _sass/@primer/css/table-object/table-object.scss
jekyll-v4-theme-primer-0.14.0 _sass/@primer/css/table-object/table-object.scss
jekyll-v4-theme-primer-0.13.0 _sass/@primer/css/table-object/table-object.scss
jekyll-v4-theme-primer-0.12.0 _sass/@primer/css/table-object/table-object.scss
jekyll-v4-theme-primer-0.11.0 _sass/@primer/css/table-object/table-object.scss
jekyll-v4-theme-primer-0.10.0 _sass/@primer/css/table-object/table-object.scss
jekyll-v4-theme-primer-0.9.0 _sass/@primer/css/table-object/table-object.scss