Browse Source

Move the header tagline styles to _common.scss

Alexander Zaytsev 6 years ago
parent
commit
1a2a5cae30

+ 8 - 0
website/themes/uppy/source/css/_common.scss

@@ -328,6 +328,10 @@ hr {
   flex: 1;
   color: $color-gray;
   display: none;
+  transition: all ease-in-out 0.3s;
+  opacity: 0;
+
+  &.is-visible { opacity: 1; }
 
   @media #{$screen-medium} {
     margin: 0;
@@ -340,6 +344,10 @@ hr {
   }
 }
 
+.MainHeader-taglineList {
+  display: none;
+}
+
 /**
 * MainMenu
 */

+ 0 - 11
website/themes/uppy/source/css/_index.scss

@@ -136,17 +136,6 @@
   }
 }
 
-.MainHeader-tagline {
-  transition: all ease-in-out 0.3s;
-  opacity: 0;
-
-  &.is-visible { opacity: 1; }
-}
-
-.MainHeader-taglineList {
-  display: none;
-}
-
 .GetStartedBtn {
   font-size: 1.2em;
   text-decoration: none;