_comment-inheritance.scss 570 B

123456789101112131415161718192021222324252627282930313233343536
  1. @use '../../styles/bootstrap/init' as bs;
  2. %comment-section {
  3. position: relative;
  4. padding: 1em;
  5. // speech balloon
  6. &:before {
  7. position: absolute;
  8. top: 1.5em;
  9. left: -1em;
  10. display: block;
  11. width: 0;
  12. content: '';
  13. border: 1em solid transparent;
  14. border-left-width: 0;
  15. @include bs.media-breakpoint-down(xs) {
  16. top: 1em;
  17. }
  18. }
  19. }
  20. %picture {
  21. float: left;
  22. width: 3em;
  23. height: 3em;
  24. margin-top: 0.8em;
  25. @include bs.media-breakpoint-down(xs) {
  26. width: 2em;
  27. height: 2em;
  28. }
  29. }
  30. $codemirror-default-height: 300px;