Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(#1407): styles of selectors for 1024px screens #1441

Merged
merged 1 commit into from Apr 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/assets/scss/abstract/mixins/_media-queries.scss
Expand Up @@ -43,7 +43,7 @@
/// @example scss - Creates a single breakpoint with the label `phone`
/// $breakpoints: ('phone': 320px);
///
$breakpoints: ( 'phone': 320px, 'tablet': 768px, 'desktop': 1024px, 'desktopLarge': 1450px, 'xxl': 1900px, ) !default;
$breakpoints: ( 'phone': 320px, 'tablet': 768px, 'desktop': 1100px, 'desktopLarge': 1450px, 'xxl': 1900px, ) !default;
///
/// Creates a list of static expressions or media types
///
Expand Down
Expand Up @@ -124,7 +124,7 @@ export default {
}
&__content {
position: absolute;
top: 50px;
top: calc(100% + 10px);
left: 0;
margin-top: 0;
box-shadow: $shadow;
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/commons/header/filters/FiltersList.vue
Expand Up @@ -301,7 +301,7 @@ $number-size: 18px;
padding: 20px 20px 10px 4em;
border-radius: $border-radius;
max-height: 550px;
z-index: 1;
z-index: 2;
@include media(">desktop") {
left: 0;
right: 0;
Expand Down
Expand Up @@ -133,7 +133,6 @@ export default {
box-shadow: $shadow;
border-radius: $border-radius;
border: none;
top: 45px;
}
}
&__button {
Expand Down