_comment-inheritance.scss 462 B

1234567891011121314151617181920212223242526272829
  1. @use '@growi/core/scss/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. width: 1.2em;
  22. height: 1.2em;
  23. }
  24. $codemirror-default-height: 300px;