diff --git a/src/App.vue b/src/App.vue index 1e8416c..03e7b85 100644 --- a/src/App.vue +++ b/src/App.vue @@ -34,7 +34,8 @@ let dim = `rgba(0, 0, 0, ${config.title.dim / 100})`; dim = `linear-gradient(${dim}, ${dim})`; - return `height: ${config.title.height}vh; line-height: ${config.title.height}vh;` + return `height: ${config.title.height}vh;` + + `line-height: ${config.title.height}vh;` // Center align + `background-image: ${dim}, url(${require('./assets/' + config.title.background)});` + `color: ${config.title.text_color}`; } @@ -57,5 +58,10 @@ background-position: center; background-repeat: no-repeat; background-size: cover; + + #title-text + { + + } }