Skip to content

Commit

Permalink
Merge branch 'main' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
hjonin committed Sep 5, 2023
2 parents 9117b67 + 1e7084d commit 7246c57
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion content/calendar/calendar.njk
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permalink: /calendar.ics
"start": [
{{ year }}, {{ month }}, {{ day }}, {{ hour }}, {{ minute }}
],
"duration": { "minutes": {{ event.data.duration or 0 }} },
"duration": { "minutes": {{ event.data.duration or 1440 }} },
"title": "{{ event.data.title }}",
"description": "{{ event.data.description }}",
"location": "{{ event.data.location }}",
Expand Down
16 changes: 8 additions & 8 deletions public/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -131,23 +131,23 @@ div.fr-callout__text p {
}

.fr-follow .fr-link--mastodon:before {
-webkit-mask-image: url(icons/logo/mastodon-fill.svg) !important;
mask-image: url(icons/logo/mastodon-fill.svg) !important;
-webkit-mask-image: url(/css/icons/logo/mastodon-fill.svg) !important;
mask-image: url(/css/icons/logo/mastodon-fill.svg) !important;
}

.fr-follow .fr-link--peertube:before {
-webkit-mask-image: url(../icons/logo/peertube.svg) !important;
mask-image: url(../icons/logo/peertube.svg) !important;
-webkit-mask-image: url(/icons/logo/peertube.svg) !important;
mask-image: url(/icons/logo/peertube.svg) !important;
}

.fr-follow .fr-link--github:before {
-webkit-mask-image: url(icons/logo/github-fill.svg) !important;
mask-image: url(icons/logo/github-fill.svg) !important;
-webkit-mask-image: url(/css/icons/logo/github-fill.svg) !important;
mask-image: url(/css/icons/logo/github-fill.svg) !important;
}

.fr-follow .fr-link--sourcehut:before {
-webkit-mask-image: url(../icons/logo/sourcehut.svg) !important;
mask-image: url(../icons/logo/sourcehut.svg) !important;
-webkit-mask-image: url(/icons/logo/sourcehut.svg) !important;
mask-image: url(/icons/logo/sourcehut.svg) !important;
}

.fr-tile__link:after {
Expand Down

0 comments on commit 7246c57

Please sign in to comment.