add pre.unstyled css rule

in bootstrap, pre blocks have background and borders.
this removes them with a special class named `unstyled`
just like `ul.unstyled`.
This commit is contained in:
glaszig 2019-07-30 14:16:07 +02:00
parent 3db99c7d21
commit e02557af3a
1 changed files with 6 additions and 0 deletions

6
dist/css/custom.css vendored
View File

@ -53,3 +53,9 @@
width:100%;
height:300px;
}
pre.unstyled {
border-width: 0;
background-color: transparent;
padding: 0;
}