Skip to content

Commit

Permalink
Simplifying and fixing lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
davenichols-DHLS committed Sep 26, 2024
1 parent 5b4a54f commit ce64868
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions styles/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit ce64868

Please sign in to comment.