fix: Fixing flex wrap for <pre>
This commit is contained in:
parent
9a644b52e7
commit
099d32850a
@ -8,6 +8,7 @@ pre {
|
||||
padding: 10px;
|
||||
border-radius: 4px;
|
||||
box-shadow: 3px 3px 3px 3px #555;
|
||||
overflow-x: scroll;
|
||||
}
|
||||
body {
|
||||
color: #444;
|
||||
@ -45,6 +46,7 @@ article h1 {
|
||||
}
|
||||
.row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.text-center {
|
||||
text-align: center;
|
||||
@ -59,6 +61,9 @@ article.page footer {
|
||||
text-align: right;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
article {
|
||||
display: grid;
|
||||
}
|
||||
#fh5co-content {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
@ -1,6 +1,5 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<?php echo Theme::css('fonts/opensans/stylesheet.css'); ?>
|
||||
<meta name="author" content="Bludit CMS">
|
||||
|
||||
@ -13,7 +12,7 @@
|
||||
<!-- Include Favicon -->
|
||||
<?php echo Theme::favicon('img/favicon.png?v=0'); ?>
|
||||
|
||||
<?php echo Theme::css('css/style.css?v=3'); ?>
|
||||
<?php echo Theme::css('css/style.css?v=4'); ?>
|
||||
|
||||
<!-- Load Bludit Plugins: Site head -->
|
||||
<?php Theme::plugins('siteHead'); ?>
|
||||
|
Loading…
Reference in New Issue
Block a user