Sha256: 42449b23cb95a0b7b252f822369a1fb315eb867c505c76a6a95ebedf880dcce4

Contents?: true

Size: 748 Bytes

Versions: 2

Compression:

Stored size: 748 Bytes

Contents

// Needs refactoring
// stylelint-disable selector-max-type
.markdown-body {
  // Tables
  table {
    display: block;
    width: 100%;
    overflow: auto;
    height: auto;

    th {
      font-weight: $font-weight-bold;
    }

    th,
    td {
      // stylelint-disable-next-line primer/spacing
      padding: 6px 13px;
      // stylelint-disable-next-line primer/borders
      border: $border-width $border-style lighten($gray-300, 5%);
    }

    tr {
      background-color: $bg-white;
      // stylelint-disable-next-line primer/borders
      border-top: $border-width $border-style darken($gray-300, 4%);

      &:nth-child(2n) {
        background-color: $bg-gray;
      }
    }

    img {
      background-color: transparent;
    }
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hardpool-flat-3.1.0 _sass/primer/markdown/tables.scss
hardpool-flat-3.0.0 _sass/primer/markdown/tables.scss