garden

2016-07-13T17:22:04.000006Z

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

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

niamu 2016-07-13T18:13:14.000009Z

@thomasdeutsch: This should work for you.

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

👍 1