forked from bloom-housing/bloom
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7e6096
commit ed31fa5
Showing
25 changed files
with
1,406 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -251,6 +251,7 @@ export class ListingController { | |
listingId, | ||
language, | ||
queryParams.view, | ||
queryParams.combined, | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
118 changes: 118 additions & 0 deletions
118
sites/public/src/components/listings/ListingsCombinedDeprecated.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
.swipe-area { | ||
display: none; | ||
|
||
@media (max-width: $screen-md) { | ||
display: block; | ||
position: absolute; | ||
top: 0; | ||
height: 3.25rem; | ||
width: 100%; | ||
z-index: var(--seeds-z-index-overlay); | ||
background-color: var(--background-color); | ||
border-top-left-radius: var(--bloom-rounded-3xl); | ||
border-top-right-radius: var(--bloom-rounded-3xl); | ||
} | ||
} | ||
|
||
.swipe-area-bottom { | ||
display: none; | ||
|
||
@media (max-width: $screen-md) { | ||
display: block; | ||
position: absolute; | ||
top: calc(var(--listings-component-height)); | ||
height: 3.25rem; | ||
width: 100%; | ||
z-index: var(--seeds-z-index-overlay); | ||
background-color: var(--background-color); | ||
border-top-left-radius: var(--bloom-rounded-3xl); | ||
border-top-right-radius: var(--bloom-rounded-3xl); | ||
} | ||
} | ||
|
||
.swipe-area-line { | ||
display: none; | ||
|
||
@media (max-width: $screen-md) { | ||
display: block; | ||
width: 30%; | ||
margin-left: 35%; | ||
margin-right: 35%; | ||
margin-top: var(--bloom-s4); | ||
border-top: 1px solid var(--line-color); | ||
} | ||
} | ||
|
||
.listings-list-deprecated { | ||
overflow-y: auto; | ||
width: var(--listings-list-width); | ||
|
||
@media (max-width: $screen-md) { | ||
padding-top: 0; | ||
z-index: 1; | ||
top: var(--seeds-s10); | ||
width: 100%; | ||
overflow-y: auto; | ||
background-color: var(--background-color); | ||
display: block; | ||
position: static; | ||
z-index: 1; | ||
height: calc(100dvh - 370px); | ||
overflow-y: auto; | ||
background-color: var(--background-color); | ||
} | ||
} | ||
|
||
.listings-outer-container-deprecated { | ||
overflow-y: auto; | ||
width: var(--listings-list-width); | ||
|
||
@media (max-width: $screen-md) { | ||
position: absolute; | ||
max-height: var(--listings-component-height-mobile); | ||
z-index: 1; | ||
top: calc(calc(calc(100vh - 183px) / 2)); | ||
width: 100%; | ||
border-top-left-radius: var(--bloom-rounded-3xl); | ||
border-top-right-radius: var(--bloom-rounded-3xl); | ||
} | ||
} | ||
|
||
.listings-list-wrapper-deprecated { | ||
@media (max-width: $screen-md) { | ||
padding-top: var(--seeds-s10); | ||
} | ||
} | ||
|
||
.listings-list-expanded-deprecated { | ||
overflow-y: auto; | ||
width: var(--listings-list-width); | ||
|
||
@media (max-width: $screen-md) { | ||
margin-top: var(--seeds-s4); | ||
z-index: 1; | ||
top: var(--seeds-s10); | ||
width: 100%; | ||
overflow-y: auto; | ||
background-color: var(--background-color); | ||
display: block; | ||
position: static; | ||
z-index: 1; | ||
height: calc(100dvh - 230px); | ||
overflow-y: auto; | ||
background-color: var(--background-color); | ||
} | ||
} | ||
|
||
.listings-map-deprecated { | ||
flex: 1; | ||
position: relative; | ||
display: flex; | ||
height: 100%; | ||
@media (max-width: $screen-md) { | ||
position: absolute; | ||
z-index: 0; | ||
height: calc(100dvh - 230px); | ||
width: 100%; | ||
} | ||
} |
Oops, something went wrong.