idk about meta tag and also fixed code yeeting out of content box
This commit is contained in:
parent
c4d62f6242
commit
68151a4fa4
2 changed files with 7 additions and 4 deletions
|
@ -68,10 +68,12 @@ pre {
|
|||
box-sizing: border-box;
|
||||
min-height: 2em;
|
||||
/*
|
||||
* Not sure why this isn't the same as the #content width.
|
||||
* Is the font size different for some reason?
|
||||
* previously a cludge of 75 em this is now a cludge of 2 different vendor extensions
|
||||
*
|
||||
* */
|
||||
max-width: 75em;
|
||||
max-width: -moz-available;
|
||||
max-width: -webkit-fill-available;;
|
||||
max-width: fill-available;
|
||||
width: fit-content;
|
||||
overflow:scroll;
|
||||
/*background: #444;*/
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- not sure if this is good or bad for mobile
|
||||
<!--<meta name="viewport" content="width=device-width, initial-scale=1">-->
|
||||
<title>{{{title}}} · Pagwin's website</title>
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/layout.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/colors.css" />
|
||||
|
|
Loading…
Reference in a new issue