mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
16 lines
235 B
SCSS
16 lines
235 B
SCSS
|
|
/* Keep class names in sync with ThemeService */
|
||
|
|
|
||
|
|
/* Default. Target Chrome */
|
||
|
|
@mixin chrome {
|
||
|
|
:host-context(.chrome-ui) {
|
||
|
|
@content;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Target Firefox */
|
||
|
|
@mixin firefox {
|
||
|
|
:host-context(.firefox-ui) {
|
||
|
|
@content;
|
||
|
|
}
|
||
|
|
}
|