Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Cook <dcook@gitlab.com>2021-01-28 18:42:03 +0300
committerDonald Cook <dcook@gitlab.com>2021-01-28 18:42:03 +0300
commitbaa402825ebae47a0b701ec2ac494b3bab69e5dd (patch)
treeb7ae9ee422b44ccbb36b36d7001503467075c7c4
parent8f438bc41e74de50894e73aa429bbc72a132091f (diff)
Updated mobile nav breakpoint925-fix-buggy-free-trial-button-in-docs-nav
-rw-r--r--content/assets/stylesheets/stylesheet.scss12
1 files changed, 6 insertions, 6 deletions
diff --git a/content/assets/stylesheets/stylesheet.scss b/content/assets/stylesheets/stylesheet.scss
index 19d60562..1574c25e 100644
--- a/content/assets/stylesheets/stylesheet.scss
+++ b/content/assets/stylesheets/stylesheet.scss
@@ -966,12 +966,12 @@ a.global-nav-link {
.logo-container {
margin-right: 32px;
- @media (max-width: $md-width) {
+ @media (max-width: $lg-width) {
margin-right: 16px;
}
}
- @media all and (max-width: $md-width) {
+ @media all and (max-width: $lg-width) {
height: auto;
}
@@ -988,7 +988,7 @@ a.global-nav-link {
}
.header-company-name {
- @media (max-width: $md-width) {
+ @media (max-width: $lg-width) {
display: none;
}
}
@@ -997,7 +997,7 @@ a.global-nav-link {
text-align: right;
list-style-type: none;
- @media all and (max-width: $md-width) {
+ @media all and (max-width: $lg-width) {
display: none;
}
}
@@ -1022,7 +1022,7 @@ a.global-nav-link {
}
}
- @media all and (max-width: $md-width) {
+ @media all and (max-width: $lg-width) {
&.active {
display: block;
@@ -1152,7 +1152,7 @@ a.global-nav-link {
.nav-toggle {
display: none;
- @media all and (max-width: $md-width) {
+ @media all and (max-width: $lg-width) {
display: flex;
height: $page-header-height;
align-items: center;