fix(search.html): corrects tag sizing for music search results

This commit is contained in:
Cory Dransfeldt 2025-06-17 16:22:46 -07:00
parent 82ef352f68
commit ff51a5d389
No known key found for this signature in database
3 changed files with 17 additions and 17 deletions

26
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "10.7.1",
"version": "10.7.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "10.7.1",
"version": "10.7.2",
"license": "MIT",
"dependencies": {
"minisearch": "^7.1.2",
@ -33,12 +33,12 @@
"markdownlint": "0.38.0",
"markdownlint-cli": "0.45.0",
"postcss": "^8.5.6",
"postcss-import": "^16.1.0",
"postcss-import": "^16.1.1",
"postcss-import-ext-glob": "^2.1.1",
"prettier": "3.5.3",
"rimraf": "^6.0.1",
"sql-formatter": "15.6.4",
"terser": "^5.42.0",
"terser": "^5.43.0",
"truncate-html": "^1.2.2"
},
"engines": {
@ -1681,9 +1681,9 @@
"license": "MIT"
},
"node_modules/electron-to-chromium": {
"version": "1.5.168",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.168.tgz",
"integrity": "sha512-RUNQmFLNIWVW6+z32EJQ5+qx8ci6RGvdtDC0Ls+F89wz6I2AthpXF0w0DIrn2jpLX0/PU9ZCo+Qp7bg/EckJmA==",
"version": "1.5.169",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.169.tgz",
"integrity": "sha512-q7SQx6mkLy0GTJK9K9OiWeaBMV4XQtBSdf6MJUzDB/H/5tFXfIiX38Lci1Kl6SsgiEhz1SQI1ejEOU5asWEhwQ==",
"dev": true,
"license": "ISC"
},
@ -4250,9 +4250,9 @@
}
},
"node_modules/postcss-import": {
"version": "16.1.0",
"resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.1.0.tgz",
"integrity": "sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==",
"version": "16.1.1",
"resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.1.1.tgz",
"integrity": "sha512-2xVS1NCZAfjtVdvXiyegxzJ447GyqCeEI5V7ApgQVOWnros1p5lGNovJNapwPpMombyFBfqDwt7AD3n2l0KOfQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@ -5564,9 +5564,9 @@
}
},
"node_modules/terser": {
"version": "5.42.0",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.42.0.tgz",
"integrity": "sha512-UYCvU9YQW2f/Vwl+P0GfhxJxbUGLwd+5QrrGgLajzWAtC/23AX0vcise32kkP7Eu0Wu9VlzzHAXkLObgjQfFlQ==",
"version": "5.43.0",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.43.0.tgz",
"integrity": "sha512-CqNNxKSGKSZCunSvwKLTs8u8sGGlp27sxNZ4quGh0QeNuyHM0JSEM/clM9Mf4zUp6J+tO2gUXhgXT2YMMkwfKQ==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "10.7.1",
"version": "10.7.2",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {
@ -62,12 +62,12 @@
"markdownlint": "0.38.0",
"markdownlint-cli": "0.45.0",
"postcss": "^8.5.6",
"postcss-import": "^16.1.0",
"postcss-import": "^16.1.1",
"postcss-import-ext-glob": "^2.1.1",
"prettier": "3.5.3",
"rimraf": "^6.0.1",
"sql-formatter": "15.6.4",
"terser": "^5.42.0",
"terser": "^5.43.0",
"truncate-html": "^1.2.2"
}
}

View file

@ -133,7 +133,7 @@ description: Search through posts and other content on my site.
</div>`
: ''}
${type === "music" && genre_name && genre_url
? `<div class="tags ${type}">
? `<div class="tags tags-small ${type}">
<a href="${genre_url}">${genre_name}</a>
</div>`
: ''}