File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 66 deploy :
77 runs-on : ubuntu-latest
88 steps :
9- - uses : actions/checkout@v3
9+ - uses : actions/checkout@v3
1010
1111 - name : Install Node.js
1212 uses : actions/setup-node@v3
Original file line number Diff line number Diff line change @@ -408,13 +408,11 @@ function SortableElement(props: SortableElementProps) {
408408}
409409
410410const DocumentContainer = styled . div `
411- max-width: ${ p => p . theme . containerWidth } rem;
411+ width: min(100%, ${ p => p . theme . containerWidth } rem);
412+ margin: auto;
412413 display: flex;
413414 flex: 1;
414- margin: auto;
415415 flex-direction: column;
416- min-height: 100%;
417- box-sizing: border-box;
418416 padding: 2rem;
419417 @media (max-width: ${ props => props . theme . containerWidth } rem) {
420418 padding: ${ p => p . theme . margin } rem;
@@ -448,6 +446,11 @@ interface GripItemProps {
448446
449447const FullPageWrapper = styled . div `
450448 background-color: ${ p => p . theme . colors . bg } ;
449+ display: flex;
450+ flex: 1;
451+ flex-direction: column;
452+ min-height: 100%;
453+ box-sizing: border-box;
451454` ;
452455
453456const SortHandleStyled = styled . div < GripItemProps > `
You can’t perform that action at this time.
0 commit comments