diff --git a/src/front/components/DesignSystem/Header/Navigation/classes.module.scss b/src/front/components/DesignSystem/Header/Navigation/classes.module.scss index 79e9f40c..ba0e4863 100644 --- a/src/front/components/DesignSystem/Header/Navigation/classes.module.scss +++ b/src/front/components/DesignSystem/Header/Navigation/classes.module.scss @@ -2,4 +2,7 @@ .root { display: inline-flex; + @media screen and (max-width: $screen-ls) { + display: none; + } } diff --git a/src/front/themes/constants.scss b/src/front/themes/constants.scss index 4a9487b4..9f0a3d72 100644 --- a/src/front/themes/constants.scss +++ b/src/front/themes/constants.scss @@ -1,8 +1,9 @@ -$screen-xl: 2559px; +// $screen-xl: 2559px; $screen-l: 1440px; +$screen-ls: 1210px; $screen-m: 1023px; $screen-s: 767px; -$screen-xs: 424px; +// $screen-xs: 424px; $custom-easing: cubic-bezier(0.645, 0.045, 0.355, 1); @@ -35,5 +36,4 @@ $grey-soft: #f9f9f9; $modal-background: rgba(0, 0, 0, 0.44); -$shadow-neutral: 0px 8px 10px 0px #00000012; - +$shadow-neutral: 0px 8px 10px 0px #00000012; \ No newline at end of file