From 1b130726efe867b47a061e5d21b3f0d191b234fa Mon Sep 17 00:00:00 2001 From: Sergiotarxz Date: Tue, 22 Aug 2023 18:43:42 +0200 Subject: [PATCH] Adding background to images in the carousel to better style. --- public/css/styles.css | 3 ++- public/css/styles.scss | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/public/css/styles.css b/public/css/styles.css index 4e01a2d..c79ee40 100644 --- a/public/css/styles.css +++ b/public/css/styles.css @@ -45,7 +45,8 @@ body { body div.carousel img { margin: 10px; height: calc(100% - 20px); - border: solid 1px black; } + border: solid 1px black; + background: white; } body div.none { display: none; } body div.complete-container { diff --git a/public/css/styles.scss b/public/css/styles.scss index 3eb622f..770c3ff 100644 --- a/public/css/styles.scss +++ b/public/css/styles.scss @@ -67,6 +67,7 @@ body { margin: 10px; height: calc(100% - 20px); border: solid 1px black; + background: white; } }