| 12345678910111213141516171819202122232425262728293031323334353637 |
- @use '@growi/core/scss/bootstrap/init' as bs;
- @use './comment-inheritance';
- @use '../PageEditor/page-editor-inheritance';
- // display cheatsheet for comment form only
- .comment-editor-styles :global {
- .cm-editor {
- height: 300px !important;
- }
- .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;
- }
- }
- }
|