Fix the styling for `pre` tags

This commit is contained in:
Robbie Antenesse 2018-02-21 10:51:37 -07:00 committed by Robbie Antenesse
parent b9735711b3
commit 77ead8dedb
2 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,7 @@
<link rel="stylesheet" href="./node_modules/font-awesome/css/font-awesome.css">
<link rel="stylesheet" href="./node_modules/bulma/css/bulma.css">
<link rel="stylesheet" href="./styles.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>

4
styles.css Normal file
View File

@ -0,0 +1,4 @@
pre {
word-break: break-all;
white-space: pre-wrap;
}