Skip to content

Commit

Permalink
chore(project): sync generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
carbon-bot committed Dec 9, 2020
1 parent 52390f4 commit 11be076
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
10 changes: 9 additions & 1 deletion packages/components/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -6599,6 +6599,7 @@ $carbon--theme: (
- **Type**: `Map`
- **Used by**:
- [carbon--theme [mixin]](#carbon--theme-mixin)
- [carbon--default-type [mixin]](#carbon--default-type-mixin)

### ✅interactive-01 [variable]

Expand Down Expand Up @@ -11171,7 +11172,13 @@ Include default type styles
}

a {
color: #0062ff;
@if global-variable-exists('carbon--theme') and
map-has-key($carbon--theme, 'link-01')
{
color: map-get($carbon--theme, 'link-01');
} @else {
color: #0062fe;
}
}

em {
Expand All @@ -11185,6 +11192,7 @@ Include default type styles
- **Group**: [@carbon/type](#carbontype)
- **Requires**:
- [carbon--type-style [mixin]](#carbon--type-style-mixin)
- [carbon--theme [variable]](#carbon--theme-variable)

### ✅carbon--font-face-sans-condensed [mixin]

Expand Down
10 changes: 9 additions & 1 deletion packages/elements/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -6206,6 +6206,7 @@ $carbon--theme: (
- **Type**: `Map`
- **Used by**:
- [carbon--theme [mixin]](#carbon--theme-mixin)
- [carbon--default-type [mixin]](#carbon--default-type-mixin)

### ✅interactive-01 [variable]

Expand Down Expand Up @@ -10404,7 +10405,13 @@ Include default type styles
}

a {
color: #0062ff;
@if global-variable-exists('carbon--theme') and
map-has-key($carbon--theme, 'link-01')
{
color: map-get($carbon--theme, 'link-01');
} @else {
color: #0062fe;
}
}

em {
Expand All @@ -10418,6 +10425,7 @@ Include default type styles
- **Group**: [@carbon/type](#carbontype)
- **Requires**:
- [carbon--type-style [mixin]](#carbon--type-style-mixin)
- [carbon--theme [variable]](#carbon--theme-variable)

### ✅carbon--font-face-sans-condensed [mixin]

Expand Down
8 changes: 7 additions & 1 deletion packages/type/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,13 @@ Include default type styles
}

a {
color: #0062ff;
@if global-variable-exists('carbon--theme') and
map-has-key($carbon--theme, 'link-01')
{
color: map-get($carbon--theme, 'link-01');
} @else {
color: #0062fe;
}
}

em {
Expand Down

0 comments on commit 11be076

Please sign in to comment.