Created
February 19, 2021 21:12
-
-
Save szalai1/9510298f2bd14f63c3973abaea3fe9e0 to your computer and use it in GitHub Desktop.
Based on @Conaw's tweet. Ref:: https://twitter.com/Conaw/status/1362762067648815108
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
.group { | |
display: flex; | |
align-items: center; | |
flex-direction: row; | |
} | |
.group div { | |
border: none; | |
} | |
.group > .rm-block__self { | |
flex-grow: 0.1; | |
} | |
.group .rm-block__children .rm-block__controls { | |
opacity: 0; | |
} | |
.group:hover .rm-block__children .rm-block__controls { | |
opacity: 1; | |
} | |
.group > .rm-block__children { | |
flex-grow: 1; | |
margin: 12px 4px; | |
padding: 8px 2px; | |
border-top: 1px solid green; | |
border-bottom: 1px solid green; | |
border-left: 1px solid green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment