From 4342b8f2dd404b6a7c38326842f318912b5a944d Mon Sep 17 00:00:00 2001 From: Dan Noble Date: Mon, 9 Dec 2024 18:29:35 -0500 Subject: [PATCH] Fixed padding on dev place page (#4780) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fixed dev place page to have `padding-top: 48px;` * Removed extra tag with id="main" which was adding to the padding ## Before ![Screenshot 2024-12-09 at 3 22 20 PM](https://github.com/user-attachments/assets/2f7abf55-c134-4bd3-b364-91c6cfadebd5) ## After ![Screenshot 2024-12-09 at 3 20 07 PM](https://github.com/user-attachments/assets/719aeb1c-fda9-46ab-a9e3-6dc8f710c5be) --- server/templates/dev_place.html | 2 +- static/css/place/dev_place_page.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/templates/dev_place.html b/server/templates/dev_place.html index b236661dcb..f25cabd566 100644 --- a/server/templates/dev_place.html +++ b/server/templates/dev_place.html @@ -50,7 +50,7 @@ data-place-summary="{{place_summary}}" data-place-subheader="{{place_type_with_parent_places_links}}" > -
+
diff --git a/static/css/place/dev_place_page.scss b/static/css/place/dev_place_page.scss index 849125da8b..c69a9c2168 100644 --- a/static/css/place/dev_place_page.scss +++ b/static/css/place/dev_place_page.scss @@ -28,7 +28,7 @@ $horizontal-divider-style: 1px solid rgba(0, 0, 0, 0.12); main { // Leave space on top for navbar and bottom for footer - padding: 24px 0; + padding: 48px 0 24px 0; } .page-content-container {