Last active
May 18, 2019 19:32
-
-
Save geeksilva97/6238fc5c32c2a448dc6e47aa7be24765 to your computer and use it in GitHub Desktop.
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
<div class="modal"> | |
<div class="modal-background"></div> | |
<div class="modal-card"> | |
<header class="modal-card-head"> | |
<p class="modal-card-title">Choose</p> | |
<button class="delete" aria-label="close"></button> | |
</header> | |
<section class="modal-card-body"> | |
<div class="select"> | |
<select name="selected" [(ngModel)]="selected"> | |
<option value="">Select a item</option> | |
<option value="Item 1">Item 1</option> | |
<option value="Item 2">Item 2</option> | |
</select> | |
</div> | |
</section> | |
<footer class="modal-card-foot"> | |
<button class="button is-success">Save changes</button> | |
<button class="button">Cancel</button> | |
</footer> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment