diff --git a/.circleci/config.yml b/.circleci/config.yml index 8cff007eb5..944585eb79 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -182,6 +182,7 @@ workflows: branches: only: - legacy-tco + - hot-fixes-3 # This is beta env for production soft releases - "build-prod-beta": context : org-global diff --git a/src/shared/components/Contentful/Banner/themes/tco19.scss b/src/shared/components/Contentful/Banner/themes/tco19.scss index d6c6d696a0..6bf82e0df9 100644 --- a/src/shared/components/Contentful/Banner/themes/tco19.scss +++ b/src/shared/components/Contentful/Banner/themes/tco19.scss @@ -77,22 +77,23 @@ $contentWrapperPadding: 0; } p { - font-size: 20px; + font-size: 15px; margin-bottom: 1em; line-height: 25px; + + strong { + font-weight: bold; + } + + em { + font-style: italic; + } } ul { list-style: disc; margin-bottom: 1em; margin-left: 20px; - - li { - p { - font-size: 16px; - line-height: 27px; - } - } } input { diff --git a/src/shared/components/Contentful/ContentBlock/themes/TCO19.scss b/src/shared/components/Contentful/ContentBlock/themes/TCO19.scss index 8159c1500c..eae2539754 100644 --- a/src/shared/components/Contentful/ContentBlock/themes/TCO19.scss +++ b/src/shared/components/Contentful/ContentBlock/themes/TCO19.scss @@ -110,13 +110,22 @@ td { @include roboto-regular; - font-size: 20px; - line-height: 70px; + font-size: 15px; + line-height: 25px; text-align: left; color: $tc-gray-80; border-top: 1px solid #ededf2; border-bottom: 1px solid #ededf2; - padding: 0 10px; + padding: 10px 0; + min-height: 51px; + + &:first-child { + padding-left: 10px; + } + + &:last-child { + padding-right: 10px; + } } ul, diff --git a/src/shared/components/Looker/index.jsx b/src/shared/components/Looker/index.jsx index 24f8faa502..e8a74ef7da 100644 --- a/src/shared/components/Looker/index.jsx +++ b/src/shared/components/Looker/index.jsx @@ -71,9 +71,9 @@ export default function Looker(props) { cols.map((c) => { const name = c.headerName; const { styles } = c; - return ( + return name ? (