From ce64868017452d4925c3ea88ae80b117124ce865 Mon Sep 17 00:00:00 2001 From: Dave Nichols Date: Thu, 26 Sep 2024 10:00:45 +0100 Subject: [PATCH] Simplifying and fixing lint issues --- styles/styles.css | 4 ++-- styles/tailwind.css | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/styles/styles.css b/styles/styles.css index 6545c225..2422a978 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -894,7 +894,7 @@ main .section:not(.stretch, .product-hero-container, .workflow-carousel-containe margin-bottom: 1.25rem; } -.container-two-col .col-right a:not(.btn):not(.rounded-full):not(.carousel-slider):not(.text-danaherblue-600) { +.container-two-col .col-right a:not(.btn, .rounded-full, .carousel-slider, .text-danaherblue-600) { background-color: transparent; text-decoration-line: underline; text-decoration-color: #7523FF; @@ -905,7 +905,7 @@ main .section:not(.stretch, .product-hero-container, .workflow-carousel-containe transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } -.container-two-col .col-right a:not(.btn):not(.rounded-full):not(.carousel-slider):not(.text-danaherblue-600):hover { +.container-two-col .col-right a:not(.btn, .rounded-full, .carousel-slider, .text-danaherblue-600):hover { --tw-bg-opacity: 1; background-color: rgb(117 35 255 / var(--tw-bg-opacity)); --tw-text-opacity: 1; diff --git a/styles/tailwind.css b/styles/tailwind.css index a235485e..f200ccf3 100644 --- a/styles/tailwind.css +++ b/styles/tailwind.css @@ -158,11 +158,11 @@ @apply mb-5; } - .container-two-col .col-right a:not(.btn):not(.rounded-full):not(.carousel-slider):not(.text-danaherblue-600) { + .container-two-col .col-right a:not(.btn, .rounded-full, .carousel-slider, .text-danaherblue-600) { @apply bg-transparent underline underline-offset-4 decoration-danaherpurple-500 decoration-2 ease-in-out duration-150 transition-all; } - .container-two-col .col-right a:not(.btn):not(.rounded-full):not(.carousel-slider):not(.text-danaherblue-600):hover { + .container-two-col .col-right a:not(.btn, .rounded-full, .carousel-slider, .text-danaherblue-600):hover { @apply bg-danaherpurple-500 text-white; }