Skip to content
Snippets Groups Projects
notes.scss 244 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;
  padding-top: 25px;
}
chris's avatar
chris committed

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