Skip to content

Commit

Permalink
fix: add stage url, remove converter test for production
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaack committed Dec 4, 2023
1 parent 9e56fb7 commit d726ef9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy-converter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- run: npm ci
- run: npm run converter:test
- run: npm run converter:build:prod
- run: npm run converter:deploy -- convert/${ACTION_NAME}
env:
Expand Down
1 change: 1 addition & 0 deletions converter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ suffix: ".html?wcmmode=disabled"
# - https://www.example.com
# - https://example.com
liveUrls:
- https://stage.lifesciences.danaher.com
- https://lifesciences.danaher.com
18 changes: 13 additions & 5 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -296,18 +296,26 @@
text-decoration-line: underline;
text-decoration-color: #3bc7e5;
text-decoration-thickness: 3px;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
transition-duration: 700ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.application main .columns > div div > p:not(.button-container) a:hover {
--tw-bg-opacity: 1;
background-color: rgb(59 199 229 / var(--tw-bg-opacity));
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
transition-duration: 150ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {

.application main .columns > div div > p:not(.button-container) a {
overflow-wrap: normal;
word-break: normal;
}
}

.testimonial>div {
Expand Down

0 comments on commit d726ef9

Please sign in to comment.