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
@mixin respond-to($media) { | |
@if $media == small { | |
@media only screen and (max-width: 699px) { @content; } | |
} | |
@else if $media == medium { | |
@if $oldIE { | |
@content; | |
} @else { | |
@media only screen and (min-width: 600px) { @content; } | |
} |
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
{-# LANGUAGE OverloadedStrings #-} | |
module Git where | |
import Data.Text.Lazy (Text) | |
import qualified Data.Text.Lazy as T | |
import Prelude hiding (FilePath) | |
import Shelly | |
git :: [Text] -> Sh Text |