From 62994d0eb29ea1b496afa727799ed4755f6ca92b Mon Sep 17 00:00:00 2001 From: Ole Wieners Date: Sun, 11 Aug 2024 16:49:21 +0200 Subject: [PATCH] Remove doubled padding from consecutive `.obj-container` elements Of course this might be a stylistic choice and pretty much subjective preference, but I think in most if not all places where this applies it looks better with just 20px of padding instead of 40px. This applies on the new tobira page and the access policy pages, and possibly some other pages/tabs as well. This shouldn't break anything, but if it is undesired or people just rather stick with the status quo, I can of course remove this again and apply the styles for the tobira page in-line. --- src/styles/components/modals/_modal-base.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/components/modals/_modal-base.scss b/src/styles/components/modals/_modal-base.scss index 5676787f9d..b174b38fba 100644 --- a/src/styles/components/modals/_modal-base.scss +++ b/src/styles/components/modals/_modal-base.scss @@ -397,6 +397,10 @@ &.padded { padding: 20px; } + + + .obj-container { + padding-top: 0; + } } }