Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amirbashan committed Jan 26, 2025
1 parent 3bc403a commit dc916e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 0 additions & 1 deletion projects/srm/src/app/page/page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
<app-search-results-page
*ngIf='layout.desktop() && searchParams'
[class.selected]='stage === "search-results"'
[class.hide]='layout.mobile()'
[searchParams]='searchParams'
[serachResultsActive]="stage === 'search-results'"
[didYouMean]='didYouMean'
Expand Down
8 changes: 5 additions & 3 deletions projects/srm/src/app/page/page.component.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@
display: flex;
}

.hide{
display: none !important;
}
@media (max-width: (@mobile-threshold - 1px)) {
.selected {
display: none;
}
}

.page-container {
position: absolute;
Expand Down

0 comments on commit dc916e3

Please sign in to comment.