fix(css): Restrict sizing to the page width in all browsers

* especially in mobile browsers
This commit is contained in:
curben 2019-08-30 05:48:26 +01:00
parent 710b9b25a1
commit 9740be51ae
No known key found for this signature in database
GPG Key ID: 5D9DB57A25D34EE3
1 changed files with 13 additions and 0 deletions

View File

@ -224,6 +224,19 @@ h6 {
margin-bottom: 0.5em;
}
/*
* Restrict sizing to the page width in all browsers (opinionated).
* sanitize.css/page.css
*/
iframe,
img,
input,
select,
textarea {
height: auto;
max-width: 100%;
}
a,
a:hover {
text-decoration: none;