From f2c167a0262a0caa3c62cbea1b7a3ce9e400c42c Mon Sep 17 00:00:00 2001 From: Davinder Singh Date: Mon, 7 Oct 2024 09:47:43 +0100 Subject: [PATCH] CMS BS5 migration - Adding the left spacing to the labels next to checkbox (#20780) * adding left-margin for the checkbox-label * moving the styling to appropriate file and making it more generic GitOrigin-RevId: 66484344891c77f6d31147ef7d0e0d55987a8445 --- .../web/frontend/stylesheets/bootstrap-5/components/form.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/web/frontend/stylesheets/bootstrap-5/components/form.scss b/services/web/frontend/stylesheets/bootstrap-5/components/form.scss index b68035a672..ea64fd4711 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/components/form.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/components/form.scss @@ -179,4 +179,8 @@ @include body-sm; } + + .checkbox-label { + margin-left: var(--spacing-04); + } }