Created
August 19, 2019 21:53
-
-
Save thatsprettyfaroutman/478faa284f3360677995490c2eeef040 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
// Cursor | |
atom-text-editor { | |
&.editor .cursor { | |
border: none; | |
&::after { | |
content: " "; | |
position: absolute; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
background-color: transparent; | |
background-size: 8px; | |
background-repeat: no-repeat; | |
background-image: url(https://i.imgur.com/lY7orqe.gif); | |
transform-origin: 0 0; | |
transform: scale(5); | |
} | |
} | |
&::shadow { | |
.cursors.blink-off .cursor { | |
opacity: 1; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment