File size: 720 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
@import "@wordpress/edit-post/build-style/style.css";
.editor__placeholder {
.placeholder {
@include placeholder();
height: 16px;
border-radius: 8px; /* stylelint-disable-line scales/radii */
}
.edit-post-header {
display: flex;
margin-top: 18px;
.placeholder {
height: 30px;
border-radius: 20px; /* stylelint-disable-line scales/radii */
}
.edit-post-header-toolbar {
flex-grow: 1;
}
}
.edit-post-header__settings {
display: flex;
}
.placeholder-site {
width: 120px;
margin-left: 18px;
}
.placeholder-button {
width: 30px;
margin: 0 8px;
}
.placeholder-title {
height: 40px;
border-radius: 20px; /* stylelint-disable-line scales/radii */
margin: 18px;
}
}
|