Skip to content

Instantly share code, notes, and snippets.

View akagabi's full-sized avatar
🤝

Gabriel Bueno akagabi

🤝
View GitHub Profile
@mixin above($screensize)
@media only screen and (min-width: $screensize)
@content
@mixin below($screensize)
@media only screen and (max-width: $screensize - 1)
@content
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->