Created
July 7, 2019 20:52
-
-
Save SteinRobert/6df9293e6e2f35e1b7f2c118919fd37f to your computer and use it in GitHub Desktop.
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
| <style scoped> | |
| label { | |
| display: inline-block; | |
| width: 120px; | |
| } | |
| .toggle { | |
| border: 2px solid black; | |
| border-radius: 12px; | |
| display: inline-block; | |
| height: 16px; | |
| position: relative; | |
| transition: all; | |
| vertical-align: middle; | |
| width: 45px; | |
| } | |
| .toggle:after { | |
| background-color: black; | |
| border-radius: 50%; | |
| content: ''; | |
| display: block; | |
| position: absolute; | |
| right: 32px; | |
| height: 10px; | |
| top: 3px; | |
| transition: all 400ms; | |
| width: 10px; | |
| } | |
| </style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment