-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix settings pullup for model3D files on mobile (#222)
* Fix: Settings pullup fits on mobile * Fix: Fix inputs in the Model3DPullup * Chore: Responding to comments
- Loading branch information
Jeremy Press
authored
Jul 17, 2017
1 parent
c309da1
commit f285ba8
Showing
5 changed files
with
18 additions
and
12 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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
$compact-width: 375px; | ||
$compact-height: 550px; | ||
|
||
@media (max-width: $compact-width) { | ||
.bp-box3d .bp-pullup { | ||
right: 0; | ||
} | ||
} | ||
|
||
@media (max-height: $compact-height) { | ||
.bp-box3d .bp-pullup { | ||
height: 250px; | ||
overflow: scroll; | ||
} | ||
} |
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