-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #376 from SejongPeer/feature/26
- Loading branch information
Showing
9 changed files
with
282 additions
and
54 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Binary file not shown.
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 |
---|---|---|
@@ -1,33 +1,68 @@ | ||
.modal{ | ||
@media (min-width: 768px) { | ||
.modal { | ||
width: 100vw; | ||
height: 100vh; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
} | ||
.container{ | ||
width: 100%; | ||
height: auto; | ||
} | ||
.container { | ||
width: 100vw; | ||
max-height: 100px; | ||
background-color: #FFFFFF; | ||
background-color: #ffffff; | ||
border-radius: 16px 16px 0px 0px; | ||
position: fixed; | ||
overflow: scroll; | ||
bottom: 0; | ||
z-index: 100; | ||
padding-bottom: 20px; | ||
height: auto; | ||
} | ||
} | ||
|
||
.animate { | ||
.animate { | ||
max-height: 500px; | ||
transition: max-height 0.2s ease-in-out; | ||
} | ||
|
||
.backdrop { | ||
position: fixed; | ||
width: 100vw; | ||
height: 100%; | ||
z-index: 10; | ||
background: rgba(0, 0, 0, 0.35); | ||
} | ||
} | ||
|
||
.backdrop { | ||
@media (max-width: 768px) { | ||
.modal { | ||
width: 100vw; | ||
height: 100vh; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
} | ||
.container { | ||
width: 100vw; | ||
height: 50vh; | ||
background-color: #ffffff; | ||
border-radius: 16px 16px 0px 0px; | ||
position: fixed; | ||
overflow: scroll; | ||
bottom: 0; | ||
z-index: 100; | ||
padding-bottom: 20px; | ||
} | ||
|
||
.animate { | ||
max-height: 500px; | ||
transition: max-height 0.2s ease-in-out; | ||
} | ||
|
||
.backdrop { | ||
position: fixed; | ||
width: 100%; | ||
width: 100vw; | ||
height: 100%; | ||
z-index: 10; | ||
background: rgba(0, 0, 0, 0.35); | ||
} | ||
} | ||
} |
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
Oops, something went wrong.