d9e2d7d3eb
* Break long words in pre tags * Move rule to editable-base.scss
28 lines
307 B
SCSS
28 lines
307 B
SCSS
@use "sass/scrollbar";
|
|
|
|
* {
|
|
max-width: 100%;
|
|
}
|
|
|
|
p {
|
|
margin-top: 0;
|
|
margin-bottom: 1rem;
|
|
|
|
&:empty::after {
|
|
content: "\a";
|
|
white-space: pre;
|
|
}
|
|
}
|
|
|
|
[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
:host(.night-mode) {
|
|
@include scrollbar.night-mode;
|
|
}
|
|
|
|
pre {
|
|
white-space: pre-wrap;
|
|
}
|