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
@highdensity: ~"only screen and (-webkit-min-device-pixel-ratio: 1.5)", | |
~"only screen and (min--moz-device-pixel-ratio: 1.5)", | |
~"only screen and (-o-min-device-pixel-ratio: 3/2)", | |
~"only screen and (min-device-pixel-ratio: 1.5)"; | |
@mobile: ~"only screen and (max-width: 529px)"; | |
@tablet: ~"only screen and (min-width: 530px) and (max-width: 991px)"; | |
@desktop: ~"only screen and (min-width: 992px) and (max-width: 1199px)"; | |
@desktop-xl: ~"only screen and (min-width: 1200px)"; | |
// usage: @media @mobile { ... } |
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
default: | |
suites: | |
default: | |
contexts: | |
- BaseContext | |
- Devinci\DevinciExtension\Context\DebugContext: | |
asset_dump_path: '%paths.base%/asset' | |
- Devinci\DevinciExtension\Context\JavascriptContext: | |
maximum_wait: 30 | |
extensions: |
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
<?php | |
require 'vendor/autoload.php'; | |
function notify($output, $command) | |
{ | |
echo <<<EOF | |
"$command": | |
--------------------------------------- |
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
// Tabs on the right side | |
.vertical .pane { | |
flex-direction: row-reverse; | |
font-family: Monaco, monospace; | |
.tab-bar { | |
height: auto; | |
flex-direction: column; | |
min-width: 130pt; |