Skip to content
Snippets Groups Projects
notes.scss 269 B
Newer Older
$gray: #ddd;

.sc-notes-footer {
  border-top: 1px solid $gray;
chris's avatar
chris committed
  counter-reset: note-footer;
  font-size: 14px;
  list-style-type: none;
  padding-top: 25px;
}
chris's avatar
chris committed

.sc-notes-footer-item::before {
  content: ''counter(note-footer)'. ';
  counter-increment: note-footer;