From b51dc7128fc6d4f844af510b29eec41c5fe6df10 Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Tue, 1 Oct 2019 12:22:11 +0200 Subject: [PATCH] Fix #927: improved title contrast on landing page with clear background --- front/src/components/Home.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/front/src/components/Home.vue b/front/src/components/Home.vue index 4b291d839f..12651acdfb 100644 --- a/front/src/components/Home.vue +++ b/front/src/components/Home.vue @@ -289,17 +289,20 @@ export default { <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped lang="scss"> +@import "../style/vendor/media"; .ui.list .list.icon { padding: 0; } h1.header, h1 .sub.header { - text-shadow: 0 2px 0 rgba(0,0,0,.8); + text-shadow: 1px 1px 2px rgba(0,0,0,.8); color: #fff !important; } h1.ui.header { - font-size: 3em; + @include media(">tablet") { + font-size: 3em; + } } h1.ui.header .sub.header { font-size: 0.8em; -- GitLab