fix: stray token + styles
This commit is contained in:
parent
ccce1537fd
commit
09c4a274bf
4 changed files with 12 additions and 8 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.5.0",
|
"version": "19.5.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.5.0",
|
"version": "19.5.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.5.0",
|
"version": "19.5.1",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
{% if item.rating %}
|
{% if item.rating %}
|
||||||
<span class="rating"> ({{ item.rating }})</span>
|
<span class="rating"> ({{ item.rating }})</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endunless %} %}
|
{% endunless %}
|
||||||
</div>
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
<div class="header">{{ item.name }}</div>
|
<div class="header">{{ item.name }}</div>
|
||||||
|
|
|
@ -81,13 +81,17 @@
|
||||||
text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px;
|
text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
& .rating {
|
|
||||||
font-size: calc(var(--font-size-sm) * .75);
|
|
||||||
}
|
|
||||||
|
|
||||||
& .header {
|
& .header {
|
||||||
font-weight: var(--font-weight-bold);
|
font-weight: var(--font-weight-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.subheader {
|
||||||
|
gap: var(--sizing-xs);
|
||||||
|
}
|
||||||
|
|
||||||
|
& .rating {
|
||||||
|
font-size: calc(var(--font-size-sm) * .75);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue