fix: Fixing flex wrap for <pre>

This commit is contained in:
sergiotarxz 2020-10-23 04:14:58 +02:00
parent 9a644b52e7
commit 099d32850a
Signed by: sergiotarxz
GPG Key ID: E5903508B6510AC2
2 changed files with 6 additions and 2 deletions

View File

@ -8,6 +8,7 @@ pre {
padding: 10px; padding: 10px;
border-radius: 4px; border-radius: 4px;
box-shadow: 3px 3px 3px 3px #555; box-shadow: 3px 3px 3px 3px #555;
overflow-x: scroll;
} }
body { body {
color: #444; color: #444;
@ -45,6 +46,7 @@ article h1 {
} }
.row { .row {
display: flex; display: flex;
flex-wrap: wrap;
} }
.text-center { .text-center {
text-align: center; text-align: center;
@ -59,6 +61,9 @@ article.page footer {
text-align: right; text-align: right;
font-size: 0.8em; font-size: 0.8em;
} }
article {
display: grid;
}
#fh5co-content { #fh5co-content {
display: flex; display: flex;
justify-content: center; justify-content: center;

View File

@ -1,6 +1,5 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <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'); ?> <?php echo Theme::css('fonts/opensans/stylesheet.css'); ?>
<meta name="author" content="Bludit CMS"> <meta name="author" content="Bludit CMS">
@ -13,7 +12,7 @@
<!-- Include Favicon --> <!-- Include Favicon -->
<?php echo Theme::favicon('img/favicon.png?v=0'); ?> <?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 --> <!-- Load Bludit Plugins: Site head -->
<?php Theme::plugins('siteHead'); ?> <?php Theme::plugins('siteHead'); ?>