Skip to content

Commit 07927cc

Browse files
authored
Change paddings and margins (#249)
1 parent c94273b commit 07927cc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/frontend/styles/components/writing.pcss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.writing-header {
2-
padding: 15px 0;
3-
margin-top: calc(-1 * var(--layout-padding-vertical));
2+
padding: 0 0 15px 0;
3+
margin-top: 0;
44
background: #fff;
55
box-shadow: 0 3px 10px #fff;
66
z-index: 2;

src/frontend/styles/layout.pcss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:root {
22
/**
3-
* Allows to dynamically set main column minimun margin left.
3+
* Allows to dynamically set main column minimun margin left.
44
* Is used for adding extra space for editor controls in page edit mode (otherwise controls overlap sidebar)
55
*/
66
--main-col-min-margin-left: 0px;
@@ -41,7 +41,7 @@
4141
box-sizing: border-box;
4242
display: flex;
4343
justify-content: space-between;
44-
padding: 20px var(--layout-padding-horizontal);
44+
padding: var(--layout-padding-vertical) var(--layout-padding-horizontal);
4545

4646
@media (--desktop) {
4747
max-width: min(

0 commit comments

Comments
 (0)