| 1234567891011121314151617181920212223242526272829303132 |
- @use '~/styles/bootstrap/init' as bs;
- @use './_comment-inheritance';
- // display cheatsheet for comment form only
- .comment-editor-styles :global {
- .comment-form {
- position: relative;
- margin-top: 1em;
- // user icon
- .picture {
- @extend %picture;
- }
- // seciton
- .comment-form-main {
- @extend %comment-section;
- margin-left: 4.5em;
- @include bs.media-breakpoint-down(xs) {
- margin-left: 3.5em;
- }
- }
- // textarea
- .comment-write {
- margin-bottom: 0.5em;
- }
- .comment-form-preview {
- padding-top: 0.5em;
- }
- }
- }
|