mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-23 11:17:06 +00:00
28 lines
646 B
SCSS
28 lines
646 B
SCSS
@mixin example-viewer-theme($theme) {
|
|
|
|
$background: map-get($theme, background);
|
|
$foreground: map-get($theme, foreground);
|
|
|
|
example-viewer {
|
|
|
|
.example-viewer-header {
|
|
color: map-get($foreground, secondary-text);
|
|
background: map-get($background, app-bar);
|
|
border-bottom-color: map-get($foreground, divider);
|
|
}
|
|
|
|
.example-viewer-source {
|
|
|
|
.tab-content {
|
|
|
|
.tab {
|
|
|
|
.example-source {
|
|
border-bottom-color: map-get($foreground, divider);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|