Skip to content

Commit 82f0907

Browse files
committed
fixes
1 parent 5de0307 commit 82f0907

5 files changed

Lines changed: 6 additions & 4 deletions

File tree

.cspell/project-terms.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ webp
1818
indexeddb
1919
aframe
2020
a-frame
21+
agentic
2122

2223
# Dependencies & Tools
2324
csslint

css/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import url("./common.css");
22

33
:root {
4-
--block-shadow: oklab(0.42 0.03 0.09);
4+
--block-shadow: oklab(42% 0.03 0.09);
55
--further-explore-bg: hsl(65deg 100% 85% / 20%);
66
--further-explore-header-hover: hsl(240deg 80% 50%);
77
--further-explore-header-active: hsl(240deg 40% 50%);

css/projects.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ main {
2828
#filters-list {
2929
--filters-bg-color: oklab(100% 0 0);
3030
--filters-box-shadow-color: oklab(50% 0 0);
31+
3132
display: flex;
3233
flex-direction: row-reverse;
3334
padding: 0.5em 1em;
@@ -72,7 +73,7 @@ main {
7273

7374
&:not(:disabled):hover {
7475
color: var(--main-a-hover-color);
75-
background-color: oklab(50% 0 0 / 0.5);
76+
background-color: oklab(50% 0 0 / 50%);
7677
}
7778
}
7879

project-display/project-display-element.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export default class ProjectDisplayElement extends HTMLElement {
5858

5959
anchorEl.textContent = tag
6060
anchorEl.href = `?filter=${tag}`
61-
anchorEl.title = `fitler on '${tag}'`
61+
anchorEl.title = `filter on '${tag}'`
6262
anchorEl.addEventListener('fadednavigate', () => {
6363
const active = listItemEl.toggleAttribute('active')
6464
this.dispatchEvent(new CustomEvent('projectfilterselected', { detail: { tag, active } }))

project-list-view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@
564564
<span slot="description">
565565
<p>An unofficial, unaffiliated app for displaying game information for players of the <a href="https://www.startrekttrpg.com/">Star Trek Adventures</a> game by Modiphius® Entertainment.</p>
566566
<p>Uses indexeddb in-browser database, drag and drop, 3D model displays multiple themes, custom web components, and custom keyboard shortcuts.</p>
567-
<p>Recently, Sam has used this project to test agentic development using GitHub copilot (AI), but make no mistake about the hands-on craftmanship still on display. The AI still has no account for good taste (awful at the theme CSS work), and the fun parts should be for humans anyway.</p>
567+
<p>Recently, Sam has used this project to test agentic development using GitHub copilot (AI), but make no mistake about the hands-on craftsmanship still on display. The AI still has no account for good taste (awful at the theme CSS work), and the fun parts should be for humans anyway.</p>
568568
</span>
569569
</project-display>
570570
</div>

0 commit comments

Comments
 (0)