From 75aa3764ea430c8fefe0cddef7d843865125ad2d Mon Sep 17 00:00:00 2001 From: Davinder Singh Date: Wed, 16 Oct 2024 11:00:20 +0100 Subject: [PATCH] CMS BS5 Migration - Migrating `about.less` to `about.scss` (#20783) * copying the styling from about.less into about.scss * adding closest spacing available in BS5 GitOrigin-RevId: c4470ab1972762a025a42d581a6dee3c28ba7e2d --- .../stylesheets/bootstrap-5/pages/about.scss | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 services/web/frontend/stylesheets/bootstrap-5/pages/about.scss diff --git a/services/web/frontend/stylesheets/bootstrap-5/pages/about.scss b/services/web/frontend/stylesheets/bootstrap-5/pages/about.scss new file mode 100644 index 0000000000..3c119820e2 --- /dev/null +++ b/services/web/frontend/stylesheets/bootstrap-5/pages/about.scss @@ -0,0 +1,39 @@ +/* + v2 + About Page +*/ +.team { + list-style: none; + padding: 0; + + .team-member { + display: block; + float: left; + margin-bottom: var(--spacing-09); + width: 100%; + + h3 { + margin: 0; + } + + .team-pic { + float: left; + margin-right: var(--spacing-04); + } + + .team-info { + overflow: hidden; + } + + .team-connect { + list-style: none; + margin-top: var(--spacing-04); + padding: 0; + + li { + display: inline-block; + margin: 0 var(--spacing-07) 0 0; + } + } + } +}