mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
Adjust maximum grid width so 80 char code fits without overflow
This commit is contained in:
parent
41121cf582
commit
56207162fe
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -36,9 +36,9 @@
|
||||
{% include "partials/fonts.html" %}
|
||||
{% endblock %}
|
||||
{% block styles %}
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-16930d50c0.css">
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-9307c0da9f.css">
|
||||
{% if config.extra.palette %}
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-0352baa348.palette.css">
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-02ce7adcc2.palette.css">
|
||||
{% endif %}
|
||||
{% for path in extra_css %}
|
||||
<link rel="stylesheet" href="{{ path }}">
|
||||
|
@ -42,10 +42,10 @@ $break-devices: (
|
||||
),
|
||||
tablet: (
|
||||
portrait: px2em(720px) px2em(959px),
|
||||
landscape: px2em(960px) px2em(1199px)
|
||||
landscape: px2em(960px) px2em(1219px)
|
||||
),
|
||||
screen: (
|
||||
small: px2em(1200px) px2em(1599px),
|
||||
small: px2em(1220px) px2em(1599px),
|
||||
medium: px2em(1600px) px2em(1999px),
|
||||
large: px2em(2000px)
|
||||
)
|
||||
|
@ -76,7 +76,7 @@ hr {
|
||||
|
||||
// Template-wide grid
|
||||
.md-grid {
|
||||
max-width: 120rem;
|
||||
max-width: 122rem;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
@ -99,7 +99,7 @@
|
||||
|
||||
// [screen +]: Limit to grid
|
||||
@include break-from-device(screen) {
|
||||
margin-left: 120rem;
|
||||
margin-left: 122rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user