Sha256: d546db1324538191247a7e9a067492207a9b9b0175fe18a56367dfb6d4f25336

Contents?: true

Size: 916 Bytes

Versions: 1

Compression:

Stored size: 916 Bytes

Contents

// Tables
// ==========================================================================

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;

  th,
  td {
    @include core-19;
    padding: em(12, 19) em(20, 19) em(9, 19) 0;

    text-align: left;
    border-bottom: 1px solid $border-colour;
  }

  th {
    font-weight: 700;
  }

  td:last-child,
  th:last-child {
    padding-right: 0;
  }

  // Right align table header cells and table cells with a numeric class
  .numeric {
    text-align: right;
  }

  // Allow a qualifying element, only table data cells should use tabular numbers
  // scss-lint:disable QualifyingElement
  td.numeric {
    font-family: $toolkit-font-stack-tabular;
  }

  caption {
    text-align: left;
  }
}

.table-font-xsmall {

  th {
    @include bold-16;
  }

  td {
    @include core-16;
  }

  th,
  td {
    padding: em(12, 16) em(20, 16) em(9, 16) 0;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
govuk_elements_rails-3.1.0 vendor/assets/stylesheets/elements/_tables.scss