mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-05-01 15:12:20 +08:00
45 lines
488 B
SCSS
45 lines
488 B
SCSS
/**
|
|
* WordPress editor styles
|
|
*/
|
|
|
|
@import "reset/variables";
|
|
|
|
body {
|
|
font-family: $font-family-base;
|
|
}
|
|
|
|
p {
|
|
margin-block-end: $sm-margin;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
vertical-align: middle;
|
|
border-style: none;
|
|
}
|
|
|
|
pre {
|
|
font-family: monospace;
|
|
font-size: 1em;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
code,
|
|
kbd,
|
|
pre,
|
|
samp {
|
|
font-size: $font-size-base;
|
|
}
|
|
|
|
code,
|
|
kbd,
|
|
pre,
|
|
samp {
|
|
font-family: $font-family-base;
|
|
font-size: $font-size-base;
|
|
}
|
|
|
|
blockquote {
|
|
font-style: italic;
|
|
}
|