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;
|
box-sizing: border-box;
|
||||||
min-height: 2em;
|
min-height: 2em;
|
||||||
/*
|
/*
|
||||||
* Not sure why this isn't the same as the #content width.
|
* previously a cludge of 75 em this is now a cludge of 2 different vendor extensions
|
||||||
* Is the font size different for some reason?
|
*
|
||||||
* */
|
* */
|
||||||
max-width: 75em;
|
max-width: -moz-available;
|
||||||
|
max-width: -webkit-fill-available;;
|
||||||
|
max-width: fill-available;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
overflow:scroll;
|
overflow:scroll;
|
||||||
/*background: #444;*/
|
/*background: #444;*/
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<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>
|
<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/layout.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="/static/css/colors.css" />
|
<link rel="stylesheet" type="text/css" href="/static/css/colors.css" />
|
||||||
|
|
Loading…
Reference in a new issue