Fork me on GitHub
#garden
<
2016-07-13
>
thomasdeutsch17:07:04

what would be the garden equivalent to adding classes inside classes?:

.tweet-too-long {
  .tweet-button {
    opacity: 0.5;
  }
  .warning-message {
    display: inline-block;
  }
}

niamu18:07:14

@thomasdeutsch: This should work for you.

(css [:.tweet-too-long
      [:.tweet-button {:opacity 0.5}]
      [:.warning-message {:display: "inline-block"}]])