diff --git a/CHANGELOG.md b/CHANGELOG.md index 799a0d2ff..ec11d7729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Changed + +- Removed the intro image in dark mode + ## 1.208.0 - 03.11.2022 ### Added diff --git a/apps/client/src/app/pages/landing/landing-page.scss b/apps/client/src/app/pages/landing/landing-page.scss index 75dc8a46c..bb0b66394 100644 --- a/apps/client/src/app/pages/landing/landing-page.scss +++ b/apps/client/src/app/pages/landing/landing-page.scss @@ -114,9 +114,7 @@ } .outro-inner-container { - div { - background-image: url('/assets/intro-dark.jpg') !important; - } + display: none; } .video { diff --git a/apps/client/src/app/pages/register/register-page.scss b/apps/client/src/app/pages/register/register-page.scss index b3c38380f..49063b48c 100644 --- a/apps/client/src/app/pages/register/register-page.scss +++ b/apps/client/src/app/pages/register/register-page.scss @@ -32,8 +32,6 @@ } .intro-container { - .intro { - background-image: url('/assets/intro-dark.jpg') !important; - } + display: none; } } diff --git a/apps/client/src/assets/intro-dark.jpg b/apps/client/src/assets/intro-dark.jpg deleted file mode 100644 index 33b0c9f0f..000000000 Binary files a/apps/client/src/assets/intro-dark.jpg and /dev/null differ