Last active
February 19, 2021 16:23
-
-
Save malchata/9587cbdcabedd02f84b721048a9f037b to your computer and use it in GitHub Desktop.
Just transferring over my atom styles to another machine the hard way.
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
atom-workspace { | |
--editor-font-size: 1.75rem; | |
} | |
atom-text-editor { | |
.cursor { | |
border-left: .25rem solid; | |
transition: opacity .1875s ease-out; | |
} | |
.indent-guide { | |
box-shadow: inset 1.75px 0; | |
opacity: .75; | |
} | |
} | |
.tree-view { | |
font-size: 1.25em; | |
} | |
.syntax--comment { | |
font-weight: 500; | |
font-style: italic; | |
} | |
.syntax--entity { | |
&.syntax--name { | |
&.syntax--tag, | |
&.syntax--type { | |
text-decoration: none; | |
} | |
} | |
} | |
@media (min-width: 100rem) { | |
atom-workspace { | |
--editor-font-size: 2.125rem; | |
--editor-font-size: 2.5rem; | |
} | |
.tree-view { | |
font-size: 1.375em; | |
font-size: 1.5em; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment