CommentEditor.module.scss 598 B

1234567891011121314151617181920212223242526272829303132
  1. @use '~/styles/bootstrap/init' as bs;
  2. @use './_comment-inheritance';
  3. // display cheatsheet for comment form only
  4. .comment-editor-styles :global {
  5. .comment-form {
  6. position: relative;
  7. margin-top: 1em;
  8. // user icon
  9. .picture {
  10. @extend %picture;
  11. }
  12. // seciton
  13. .comment-form-main {
  14. @extend %comment-section;
  15. margin-left: 4.5em;
  16. @include bs.media-breakpoint-down(xs) {
  17. margin-left: 3.5em;
  18. }
  19. }
  20. // textarea
  21. .comment-write {
  22. margin-bottom: 0.5em;
  23. }
  24. .comment-form-preview {
  25. padding-top: 0.5em;
  26. }
  27. }
  28. }