summaryrefslogtreecommitdiffstats
path: root/public/prism/prism-coffeescript.min.js
Commit message (Expand)AuthorAgeFilesLines
* chore: add prismjs for syntax highlightingArmand Philippot2021-12-301-0/+53
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/// List Reset
%reset-list {
  list-style-type: none;
  margin: 0;
  padding: 0;

  li {
    margin-bottom: 0;
  }
}

/// Ordered List Reset
%reset-ordered-list {
  @extend %reset-list;

  li {
    display: list-item;
    counter-increment: none;

    &::before {
      display: none;
    }
  }
}

/// Display an inline list with flexbox
%flex-list {
  @extend %reset-list;

  display: flex;
  flex-flow: row wrap;
}