SU-SWS/stanford_profile_helper

View on GitHub
modules/stanford_profile_styles/lib/scss/component/paragraph/wysiwyg/_lists.scss

Summary

Maintainability
Test Coverage
@charset "UTF-8";

.su-wysiwyg-text {
  // Lists styles
  ul,
  ol {
    @include big-paragraph;
  }

  // When centered, allow the list indicator to follow the text.
  li,
  dt,
  dd {
    &.text-align-center,
    &.text-align-right {
      @include margin(null auto);
      list-style-position: inside;
    }

    &.text-align-right {
      @include margin(null 0 null auto)
    }
  }
}