Last active
September 16, 2019 04:07
-
-
Save alancpazetto/b84a4adb0f0a1aa94785 to your computer and use it in GitHub Desktop.
Ionic Framework Popup Material Design (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
$buttonsColor : #2196f3; | |
.popup-container{ | |
.popup{ | |
padding-top: 5px; | |
padding-left: 10px; | |
background: #fafafa; | |
-webkit-box-shadow: 0 10px 30px 0 rgba(0,0,0,.3); | |
box-shadow: 0 10px 30px 0 rgba(0,0,0,.3); | |
.popup-head{ | |
text-align: left; | |
border: none; | |
h3{ | |
color: #000; | |
font-size: 20px; | |
} | |
} | |
.popup-body{ | |
font-size: 17px; | |
color: #737373; | |
} | |
.popup-buttons{ | |
text-align: right; | |
display: block; | |
.button{ | |
width: auto; | |
display: inline-block; | |
-webkit-box-flex: none; | |
flex: none; | |
color: $buttonsColor; | |
background: transparent; | |
text-transform: uppercase; | |
font-weight: 500; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment