Created
January 1, 2022 10:22
-
-
Save vinzcelavi/3a84a11821ce6b3c0ef99283e5a9cdb3 to your computer and use it in GitHub Desktop.
A tiny chip for containers
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
.container { | |
outline: 1px solid hotpink; | |
&::before { | |
z-index: 1000; | |
content: 'container'; | |
position: absolute; | |
top: 0; | |
left: 0; | |
font-size: 14px; | |
line-height: 1; | |
padding: 4px; | |
color: white; | |
background: hotpink; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment