1
0
mirror of https://github.com/aureliendavid/rsspreview.git synced 2025-08-26 05:15:33 +00:00

Fix code overflow

Fixes #25
This commit is contained in:
Alfredo Ramos 2019-02-08 15:54:34 -06:00
parent 99c56f041b
commit 0885fa859f

View File

@ -1,6 +1,11 @@
html {
font: 3mm tahoma,arial,helvetica,sans-serif;
background-color: rgb(240, 240, 240);
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
@ -35,6 +40,17 @@ a[href] img {
border: none;
}
pre {
word-wrap: break-word;
word-break: break-all;
}
code {
display: block;
overflow: auto;
white-space: inherit;
}
#feedBody {
border: 1px solid THreeDShadow;
padding: 3em;