Move metadata prefix to variable.
parent
5fead9ecc2
commit
a748cc419d
|
@ -5,6 +5,7 @@ $icedream-text-color: #eee !default;
|
|||
|
||||
// extra features
|
||||
$icedream-metadata-overlay: false !default;
|
||||
$icedream-metadata-prefix: '🎶 Now playing: ' !default;
|
||||
$icedream-nav-tab-fix: false !default;
|
||||
$icedream-nav-bg-fade: true !default;
|
||||
$icedream-fog-bg: true !default;
|
||||
|
|
|
@ -57,9 +57,11 @@ body {
|
|||
#meta {
|
||||
color: $icedream-text-color;
|
||||
|
||||
&:before {
|
||||
content: '🎶 Now playing: ';
|
||||
font-weight: 700;
|
||||
@if $icedream-metadata-prefix {
|
||||
&:before {
|
||||
content: $icedream-metadata-prefix;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue