Last active
November 27, 2018 15:03
-
-
Save dsternlicht/d9e56df24915ea44884aa252e528c2a1 to your computer and use it in GitHub Desktop.
HTML Mock for our modal component
This file contains hidden or 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
| <div class="modal"> | |
| <div class="overlay"></div> | |
| <div class="modal_content"> | |
| <!-- Dynamic Section --> | |
| <h2>Hey Awesome Modal!</h2> | |
| <p style="text-align: center;"> | |
| Cupcake ipsum dolor sit amet pie brownie. Carrot cake wafer I love pie bear claw. Sweet cake cheesecake candy canes carrot cake marshmallow. Sweet roll I love sweet fruitcake donut chupa. | |
| </p> | |
| <!-- End of Dynamic Section --> | |
| <button title="Close" class="close_modal"> | |
| <i class="fas fa-times"></i> | |
| </button> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment