MOBILE-3833 style: Style hr when comes from WS

main
Pau Ferrer Ocaña 2022-04-04 10:55:19 +02:00
parent 31d8a2c7a5
commit 28c817b7ed
2 changed files with 8 additions and 1 deletions

View File

@ -57,14 +57,17 @@ $grid-column-paddings: (
// Do not let block elements to define widths or heights.
address, article, aside, blockquote, canvas, dd, div, dl, dt, fieldset, figcaption, figure, footer, form,
h1, h2, h3, h4, h5, h6,
header, hr, li, main, nav, noscript, ol, p, pre, section, table, tfoot, ul, video {
header, li, main, nav, noscript, ol, p, pre, section, table, tfoot, ul, video {
width: auto !important;
height: auto !important;
min-width: auto !important;
min-height: auto !important;
// Avoid having one entry over another.
max-height: none !important;
}
hr {
border-top: 1px solid var(--stroke);
}
}
}

View File

@ -218,6 +218,10 @@ core-rich-text-editor .core-rte-editor {
margin-block-start: 0;
}
hr {
border-top: 1px solid var(--stroke);
}
.no-overflow {
overflow: auto;
}