30 lines
888 B
SCSS
30 lines
888 B
SCSS
|
|
/////////////////////////////////////////////////////////////////////
|
|
// theme for editor admin, import style.sass and apply class before rest of it
|
|
|
|
// admin styles
|
|
.wp-admin {
|
|
.components-button.edit-post-fullscreen-mode-close.has-icon,
|
|
.edit-post-fullscreen-mode-close_site-icon {
|
|
background-color: #fff;
|
|
filter: invert(1);
|
|
}
|
|
}
|
|
.site-icon-preview .app-icon-preview {
|
|
background-color: #fff;
|
|
}
|
|
// editor styles
|
|
.editor-styles-wrapper {
|
|
// import theme styles
|
|
@import "style";
|
|
font-family: 'Neue Haas Grotesk Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
|
|
|
|
h1,h2,h3,h4,h5,ul,figure,button {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
// modify internal paths to make objects locally available
|
|
@import "adminstyles/fonts";
|
|
////////////////////////////////////////
|