From 3a9ab6b3ed55afc324af57a94ded45c33c7d7f49 Mon Sep 17 00:00:00 2001 From: Ilkyu Ju Date: Fri, 26 Mar 2021 23:02:16 -0500 Subject: [PATCH] repeat background --- frontend/src/App.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frontend/src/App.css b/frontend/src/App.css index 4821bc8..5b17cc2 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -2,16 +2,23 @@ text-align: center; } -#body:before { +body { + background-repeat: repeat-y !important; +} + +body:before { content: ' '; background-image: url('./images/bg-home.jpg'); background-size: cover; + background-repeat: repeat-y; position: absolute; opacity: 0.3; top: 0px; right: 0px; bottom: 0px; left: 0px; + max-height: 1500px; + height: 5000px; z-index: -300; }