Skip to content

Commit

Permalink
Update document title buttons radius (#53221)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskoster authored and tellthemachines committed Aug 14, 2023
1 parent 53cd957 commit cede1a7
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.edit-site-document-actions {
display: flex;
align-items: center;
gap: $grid-unit;
height: $button-size;
justify-content: space-between;
// Flex items will, by default, refuse to shrink below a minimum
Expand All @@ -10,7 +9,7 @@
// See https://dev.w3.org/csswg/css-flexbox/#min-size-auto
min-width: 0;
background: $gray-100;
border-radius: 4px;
border-radius: $grid-unit-05;
width: min(100%, 450px);

// Make the document title shorter in top-toolbar mode, as it has to be covered.
Expand All @@ -19,6 +18,8 @@
}

.components-button {
border-radius: $grid-unit-05;

&:hover {
color: var(--wp-block-synced-color);
background: $gray-200;
Expand Down

0 comments on commit cede1a7

Please sign in to comment.