summaryrefslogtreecommitdiff
path: root/scss/tests/files/general/global-variable-exists.scss
blob: 4404ed0e7d76bdcc28f2416a70af7b98651c1f05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@mixin myblockquote {
  blockquote {
    @if global-variable-exists(blockquote-color) {
      background: $blockquote-color;
    }
    @else {
      background: lime;
    }

    @if mixin-exists(myblockquote) {
      color: red;
    }
    @else {
      color: blue;
    }

    @if variable-exists(foo) {
      float: left;
    }
    $foo: 1;
    @if variable-exists(foo) {
      float: right;
    }
  }
}

@include myblockquote;