Created
January 23, 2021 14:57
-
-
Save rebelchris/85f115a3da5dfda29e00beb7d5cbbf61 to your computer and use it in GitHub Desktop.
Holder options
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
| .holder { | |
| &--options { | |
| display: flex; | |
| justify-content: space-around; | |
| align-items: center; | |
| padding: 1rem 0; | |
| &-option { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| background-color: none; | |
| outline: none; | |
| border: 0px; | |
| background: none; | |
| color: #fff; | |
| i { | |
| background: #fff; | |
| border-radius: 50%; | |
| margin-bottom: 0.5rem; | |
| font-size: 1.5rem; | |
| width: 64px; | |
| height: 64px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: #555; | |
| box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); | |
| } | |
| &.active { | |
| i { | |
| color: #00f5d4; | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment