Cleanup SASS imports
This commit is contained in:
parent
eddd920987
commit
122dbb5705
4 changed files with 7 additions and 8 deletions
|
@ -226,7 +226,7 @@ export class AppComponent implements OnInit {
|
|||
new Hotkey('g o', (event: KeyboardEvent): boolean => {
|
||||
this.router.navigate([ '/videos/overview' ])
|
||||
return false
|
||||
}, undefined, this.i18n('Go to the videos discover page')),
|
||||
}, undefined, this.i18n('Go to the discover videos page')),
|
||||
new Hotkey('g t', (event: KeyboardEvent): boolean => {
|
||||
this.router.navigate([ '/videos/trending' ])
|
||||
return false
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
$icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
|
||||
@import '_bootstrap';
|
||||
|
||||
@import '_variables';
|
||||
@import '_mixins';
|
||||
|
|
|
@ -11,9 +11,3 @@ $slider-bg-color: lighten($primary-background-color, 33%);
|
|||
$progress-margin: 10px;
|
||||
|
||||
$assets-path: '../../assets/' !default;
|
||||
|
||||
body {
|
||||
--embedForegroundColor: #{$primary-foreground-color};
|
||||
|
||||
--embedBigPlayBackgroundColor: #{$primary-background-color};
|
||||
}
|
||||
|
|
|
@ -2,6 +2,12 @@
|
|||
@import '_mixins';
|
||||
@import './_player-variables';
|
||||
|
||||
body {
|
||||
--embedForegroundColor: #{$primary-foreground-color};
|
||||
|
||||
--embedBigPlayBackgroundColor: #{$primary-background-color};
|
||||
}
|
||||
|
||||
@mixin big-play-button-triangle-size($triangle-size) {
|
||||
width: $triangle-size;
|
||||
height: $triangle-size;
|
||||
|
|
Loading…
Reference in a new issue