| 1234567891011121314151617181920212223242526272829 |
- @use '@growi/core/scss/bootstrap/init' as bs;
- %comment-section {
- position: relative;
- padding: 1em;
- // speech balloon
- &:before {
- position: absolute;
- top: 1.5em;
- left: -1em;
- display: block;
- width: 0;
- content: '';
- border: 1em solid transparent;
- border-left-width: 0;
- @include bs.media-breakpoint-down(xs) {
- top: 1em;
- }
- }
- }
- %picture {
- width: 1.2em;
- height: 1.2em;
- }
- $codemirror-default-height: 300px;
|