-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: layout responsive for edit page
- Loading branch information
1 parent
80bf869
commit 4e3480d
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
.editor-page { | ||
.pgn__modal-body { | ||
@include media-breakpoint-down(xs) { | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
} | ||
} | ||
|
||
.pgn-transition-replace-group .bg-light-300 { | ||
@include media-breakpoint-down(xs) { | ||
padding: 5px !important; | ||
} | ||
} | ||
|
||
.pgn__form-control-set .pgn__action-row { | ||
@include media-breakpoint-down(xs) { | ||
flex-flow: column wrap; | ||
align-items: flex-start; | ||
justify-content: flex-start; | ||
gap: 8px; | ||
} | ||
} | ||
} | ||
|
||
.pgn__modal.pgn__modal-scroll-fullscreen { | ||
@include media-breakpoint-down(xs) { | ||
margin: 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters