From 8c5614000914c7ac29f6ffe6b50e1708b680292b Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sun, 22 Dec 2019 23:07:23 -0500 Subject: [PATCH] [S] Center align text --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 11ba810..1e8416c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -34,7 +34,7 @@ let dim = `rgba(0, 0, 0, ${config.title.dim / 100})`; dim = `linear-gradient(${dim}, ${dim})`; - return `height: ${config.title.height}vh;` + return `height: ${config.title.height}vh; line-height: ${config.title.height}vh;` + `background-image: ${dim}, url(${require('./assets/' + config.title.background)});` + `color: ${config.title.text_color}`; }