Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix box-sizing issue.
  • Loading branch information
jasmussen committed Dec 21, 2022
commit 37d482a433569c4eff8351bd4ae03aa01f132645
23 changes: 11 additions & 12 deletions packages/edit-post/src/components/secondary-sidebar/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,24 +76,23 @@
}

.edit-post-editor__list-view-overview {
display: flex;
flex-direction: column;
gap: $grid-unit-10;
border-bottom: $border-width solid $gray-300;
padding: $grid-unit-20;

& > div > span:first-child {
// Width of the text information fields.
width: 90px;
display: inline-block;
}
border-bottom: $border-width solid $gray-300;
width: calc(100% - #{ $grid-unit-40 });
padding: $grid-unit-20;
& > div {
padding: 0 0 $grid-unit-10;
& > span {
font-size: $helptext-font-size;
line-height: $default-line-height;
color: $gray-700;
}

& > div > span {
font-size: $helptext-font-size;
line-height: $default-line-height;
color: $gray-700;
}
// Height of the overview container.
height: 72px;
}

.edit-post-editor__list-view-container {
Expand Down