diff --git a/docs/_includes/index_en/whats-problems.html b/docs/_includes/index_en/whats-problems.html index 1515d726..befaee9b 100644 --- a/docs/_includes/index_en/whats-problems.html +++ b/docs/_includes/index_en/whats-problems.html @@ -5,7 +5,7 @@
diff --git a/docs/_layouts/main-page.html b/docs/_layouts/main-page.html index eb193af2..4bd04636 100644 --- a/docs/_layouts/main-page.html +++ b/docs/_layouts/main-page.html @@ -1,7 +1,7 @@ --- layout: default --- -
+
{% include topnav.html %} {{ content }} diff --git a/docs/css/components/_header.scss b/docs/css/components/_header.scss index cc6fa067..d17f18d2 100644 --- a/docs/css/components/_header.scss +++ b/docs/css/components/_header.scss @@ -93,10 +93,15 @@ & a { @include montserrat(regular); - font-size: rem(14px); + //font-size: rem(14px); + font-size: 14px; line-height: rem(20px); color: $text-color-title; + @include laptop { + font-size: 13px; + } + @include tablets { font-size: 16px; font-weight: 600; diff --git a/docs/css/components/index/_benefits.scss b/docs/css/components/index/_benefits.scss index cf157c4c..4dbba37d 100644 --- a/docs/css/components/index/_benefits.scss +++ b/docs/css/components/index/_benefits.scss @@ -85,7 +85,10 @@ height: rem(59px); fill: none; padding-bottom: rem(20px); - stroke: $color-accent; + + &--stroke { + stroke: $color-accent; + } } &__title { diff --git a/docs/css/docs.css b/docs/css/docs.css index 19685955..1f8aca51 100644 --- a/docs/css/docs.css +++ b/docs/css/docs.css @@ -95,7 +95,6 @@ .layout-sidebar__content { width: 860px; - padding-left: 20px; } /* .layout-sidebar__content .post-content > p { @@ -103,6 +102,7 @@ } */ .sidebar { + font-size: 14px; list-style-type: none; margin: 0; padding: 0; diff --git a/docs/css/misc/common.scss b/docs/css/misc/common.scss index 8f3092b1..ec2d23e5 100644 --- a/docs/css/misc/common.scss +++ b/docs/css/misc/common.scss @@ -16,11 +16,22 @@ html { } .overflow__container { - overflow: hidden; - min-width: 1200px; - @include old-display { - min-width: auto; // сделать только для страницы security + overflow: visible; + + & .section__wrapper { + min-width: 1100px; + padding-right: 50px; + } + } + + &.overflow { + overflow: hidden; + min-width: 1200px; + + @include old-display { + min-width: auto; // сделать только для страницы security + } } }