_comment-inheritance.scss 534 B

12345678910111213141516171819202122232425262728293031323334
  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. }