From f9ad894c4203e5b382983348f659280399245ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Ruiz?= Date: Tue, 29 Oct 2024 20:28:35 -0300 Subject: [PATCH] Desktop settings fixes (#26285) * Update settings_manage_profile.ts * Add Manage Profile page to customize padding * imports: order alphabetically * Fix brave://settings/braveSync/setup image padding Fixes the image being left out of the margin * Fix padding on inner setting pages * changed token to spacing * Update settings_manage_profile.ts --- .../resources/settings/brave_sync_page/brave_sync_setup.html | 1 - .../resources/page_specific/settings/br_settings_shared.css | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/browser/resources/settings/brave_sync_page/brave_sync_setup.html b/browser/resources/settings/brave_sync_page/brave_sync_setup.html index 465c10d49ce6..6f650f4cc178 100644 --- a/browser/resources/settings/brave_sync_page/brave_sync_setup.html +++ b/browser/resources/settings/brave_sync_page/brave_sync_setup.html @@ -3,7 +3,6 @@ .sync-setup { /* break out of indent for the setup only */ - margin-left: calc(var(--cr-section-indent-padding) * -1); display: grid; grid-template-columns: 30% auto; grid-template-rows: auto; diff --git a/ui/webui/resources/page_specific/settings/br_settings_shared.css b/ui/webui/resources/page_specific/settings/br_settings_shared.css index 85a9bc80d687..08447aade1cd 100644 --- a/ui/webui/resources/page_specific/settings/br_settings_shared.css +++ b/ui/webui/resources/page_specific/settings/br_settings_shared.css @@ -10,3 +10,7 @@ a[href] { text-decoration: none !important; } + +.content-settings-header{ + padding-top: var(--leo-spacing-2xl) !important; +}