mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
1d49b65c2e
Now wraps instead of running off the page. Fixed #676
27 lines
393 B
SCSS
27 lines
393 B
SCSS
@import "variables";
|
|
@import "mixins";
|
|
@import "html";
|
|
@import "text";
|
|
@import "grid";
|
|
@import "blocks";
|
|
@import "forms";
|
|
@import "tables";
|
|
@import "header";
|
|
@import "lists";
|
|
@import "pages";
|
|
|
|
table {
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
// Prevent code block overflow on export
|
|
pre {
|
|
padding-left: 12px;
|
|
}
|
|
pre:after {
|
|
display: none;
|
|
}
|
|
pre code {
|
|
white-space: pre-wrap;
|
|
} |