From 5354b23d08abdb0d4dd06cfce080d3f57b21b59f Mon Sep 17 00:00:00 2001 From: hackerbirds <120066692+hackerbirds@users.noreply.github.com> Date: Tue, 12 Dec 2023 19:48:58 +0100 Subject: [PATCH] Remove legacy forward modal header CSS This removes old css that is now handled in `Modal.scss`. This legacy CSS code would force the modal title to be centered (something that isn't the case nowadays) and override the new `Modal.scss` CSS which messed up the X button. --- stylesheets/components/ForwardMessageModal.scss | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/stylesheets/components/ForwardMessageModal.scss b/stylesheets/components/ForwardMessageModal.scss index 4750dcb305..35dc477cc3 100644 --- a/stylesheets/components/ForwardMessageModal.scss +++ b/stylesheets/components/ForwardMessageModal.scss @@ -23,22 +23,6 @@ } } - &__header { - align-items: center; - display: flex; - justify-content: center; - position: relative; - @include font-body-1-bold; - - &--edit { - border-bottom: 1px solid $color-gray-15; - - @include dark-theme() { - border-color: $color-gray-60; - } - } - } - &__list-wrapper { flex-grow: 1; overflow: hidden;