_post-comments.scss 719 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @import 'button-mixins';
  2. .wp-block-post-comments {
  3. label, .comment-meta {
  4. font-size: var(--wp--custom--form--label--typography--font-size);
  5. }
  6. input[type="submit"],
  7. .reply a {
  8. @include button-main-styles;
  9. @include button-hover-styles;
  10. }
  11. .reply a {
  12. display: inline-block;
  13. }
  14. .comment-form {
  15. input[type="text"] {
  16. width: 100%;
  17. }
  18. }
  19. .comment-reply-title {
  20. small {
  21. float: right;
  22. font-size: 14px;
  23. }
  24. }
  25. .comment-form-cookies-consent {
  26. input[type="checkbox"]{
  27. margin-left: 0;
  28. }
  29. }
  30. .commentlist {
  31. .comment {
  32. p {
  33. font-size: var(--wp--custom--post-comment--typography--font-size);
  34. line-height: var(--wp--custom--post-comment--typography--line-height);
  35. }
  36. }
  37. }
  38. }