diff --git a/package.json b/package.json index 7c451b45..77f6e085 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "2.4.0", + "version": "2.4.1", "description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.", "main": "index.html", "scripts": { diff --git a/src/_includes/partials/post-tags.liquid b/src/_includes/partials/post-tags.liquid index d2929e12..3b09ae61 100644 --- a/src/_includes/partials/post-tags.liquid +++ b/src/_includes/partials/post-tags.liquid @@ -3,7 +3,7 @@ {% if tag != "posts" %}
{{ tag }}
{% endif %} diff --git a/src/contact.md b/src/contact.md index 0a53eb5b..5c853b52 100644 --- a/src/contact.md +++ b/src/contact.md @@ -39,5 +39,5 @@ Fill out the form below to get in touch (or ping me on [Mastodon](https://social - + diff --git a/src/tags.md b/src/tags.md index 106f8689..6bb3befd 100644 --- a/src/tags.md +++ b/src/tags.md @@ -20,7 +20,7 @@ meta: {% for tag in collections.tagList %} - diff --git a/tailwind.css b/tailwind.css index 0b39165c..0ec52add 100644 --- a/tailwind.css +++ b/tailwind.css @@ -102,12 +102,8 @@ pre { @apply scrollbar-track-blue-100; } -button { +.pill--button { @apply !appearance-none; -} - -button, -.tag--button { @apply font-semibold; @apply py-2; @apply px-4; @@ -121,8 +117,7 @@ button, background-color: theme(colors.blue.600) !important; } -button.button__small, -.tag--button.tag--button__small { +.pill--button.pill--button__small { @apply py-1; @apply px-2; @apply mr-2; @@ -131,12 +126,9 @@ button.button__small, @apply inline-block; } -button:hover, -button:active, -button:focus, -.tag--button:hover, -.tag--button:active, -.tag--button:focus { +.pill--button:hover, +.pill--button:active, +.pill--button:focus { background-color: theme(colors.blue.800) !important; } @@ -228,14 +220,14 @@ button:focus, @apply scrollbar-thumb-blue-400; } - .tag--button { + .pill--button { color: theme(colors.gray.900); background: theme(colors.blue.400); } - .tag--button:hover, - .tag--button:active, - .tag--button:focus { + .pill--button:hover, + .pill--button:active, + .pill--button:focus { background: theme(colors.blue.200); } }