Move metadata prefix to variable.

header/meta/side-by-side
Icedream 2018-07-13 14:39:36 +02:00
parent 5fead9ecc2
commit a748cc419d
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
2 changed files with 6 additions and 3 deletions

View File

@ -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;

View File

@ -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;
}
}
}