Last active
July 19, 2020 07:19
-
-
Save ciceronianus/df3ffd9674bdd2fc8cd9318d84305de0 to your computer and use it in GitHub Desktop.
Roam - version number control on the left
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
/* | |
Author: @CatoMinor3 | |
Version: 1 | |
Date: July 3rd | |
Paypal support: https://www.paypal.me/catominor3 | |
What it does: Custom CSS that moves the version number controls from the top to the left. | |
*/ | |
div[style*="flex: 1 1 100%; margin-bottom: 6px;"] | |
{ | |
display:flex; | |
flex-direction:row; | |
} | |
div[style*="flex: 1 1 100%; margin-bottom: 6px;"] div:nth-child(1) | |
{ | |
display:flex; | |
flex-direction:column; | |
padding-right: 5px; | |
border-bottom: 0px solid white !important; | |
} | |
div[style*="flex: 1 1 100%; margin-bottom: 6px;"] div:nth-child(1) span[style*="border-bottom: 2px solid rgb(138, 155, 168);"] { | |
background-color: lightgrey; | |
border-bottom: 0px solid white !important; | |
border-radius: 5px; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment