You've already forked wp-bootstrap
24 lines
621 B
SCSS
24 lines
621 B
SCSS
|
|
/*!
|
||
|
|
* WP Bootstrap Theme - Editor Styles
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Import Bootstrap functions and variables for consistency
|
||
|
|
@import "bootstrap/scss/functions";
|
||
|
|
@import "variables";
|
||
|
|
@import "bootstrap/scss/variables";
|
||
|
|
@import "bootstrap/scss/variables-dark";
|
||
|
|
@import "bootstrap/scss/maps";
|
||
|
|
@import "bootstrap/scss/mixins";
|
||
|
|
@import "bootstrap/scss/root";
|
||
|
|
|
||
|
|
// Editor-specific adjustments
|
||
|
|
.editor-styles-wrapper {
|
||
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||
|
|
line-height: 1.5;
|
||
|
|
|
||
|
|
a {
|
||
|
|
text-decoration-thickness: 1px !important;
|
||
|
|
text-underline-offset: 0.1em;
|
||
|
|
}
|
||
|
|
}
|