diff --git a/src/components/_shared/CommentEditor/styles/CommentEditor.module.scss b/src/components/_shared/CommentEditor/styles/CommentEditor.module.scss index 6f8827ec..729c3589 100644 --- a/src/components/_shared/CommentEditor/styles/CommentEditor.module.scss +++ b/src/components/_shared/CommentEditor/styles/CommentEditor.module.scss @@ -9,9 +9,11 @@ } .actions { - display: flex; - flex-direction: row; - justify-content: space-between; + @include media-breakpoint-up(sm) { + display: flex; + flex-direction: row; + justify-content: space-between; + } .menu, .buttons { @@ -19,6 +21,12 @@ flex-direction: row; } + @include media-breakpoint-down(sm) { + .menu { + margin-bottom: 1em; + } + } + .buttons { gap: 10px; }