From 8adf5355d41b6d3fecbd151d381a8ed4d0ba1b6d Mon Sep 17 00:00:00 2001 From: Maggie Wachs Date: Mon, 9 Sep 2024 10:02:12 -0400 Subject: [PATCH] moved table overrides to _sass custom styles --- _sass/_uswds-theme-custom-styles.scss | 10 ++++++++++ assets/css/uswds-theme.scss | 11 ----------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/_sass/_uswds-theme-custom-styles.scss b/_sass/_uswds-theme-custom-styles.scss index 5a62a0c4..371d221b 100644 --- a/_sass/_uswds-theme-custom-styles.scss +++ b/_sass/_uswds-theme-custom-styles.scss @@ -273,3 +273,13 @@ a.anchor-link:focus, a.anchor-link:hover { font-size: large; opacity: 1 } + +main .usa-table td { + vertical-align: top; + font-size: 1.1rem; +} +main .usa-table td ul, +main .usa-table td li, +main .usa-table td strong { + font-size: inherit; +} diff --git a/assets/css/uswds-theme.scss b/assets/css/uswds-theme.scss index 7a278a9b..e7557a74 100644 --- a/assets/css/uswds-theme.scss +++ b/assets/css/uswds-theme.scss @@ -183,14 +183,3 @@ $theme-sidenav-breakpoint: '{{ site.data.navigation.sidenav-breakpoint | default // import user custom styles @import 'uswds-theme-custom-styles'; - -// table style overrides -main .usa-table td { - vertical-align: top; - font-size: 1.1rem; -} -main .usa-table td ul, -main .usa-table td li, -main .usa-table td strong { - font-size: inherit; -} \ No newline at end of file