From d3b31cc7965fa4778ac8c04f6006271bcf459180 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 26 Jun 2024 14:14:19 -0700 Subject: [PATCH] chore: styles --- package-lock.json | 4 ++-- package.json | 2 +- src/_includes/base.liquid | 1 + .../partials/widgets/prompt-injection.liquid | 1 + src/assets/styles/base/index.css | 21 +++++++++++++++++++ 5 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 src/_includes/partials/widgets/prompt-injection.liquid diff --git a/package-lock.json b/package-lock.json index e6ea212c..fbb54103 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "19.6.7", + "version": "19.6.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "19.6.7", + "version": "19.6.8", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index 2b3b221b..6c1887b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "19.6.7", + "version": "19.6.8", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index cdcc9e3d..36751305 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -147,5 +147,6 @@ })() {{ content }} + {% render "partials/widgets/prompt-injection.liquid" %} \ No newline at end of file diff --git a/src/_includes/partials/widgets/prompt-injection.liquid b/src/_includes/partials/widgets/prompt-injection.liquid new file mode 100644 index 00000000..d7518839 --- /dev/null +++ b/src/_includes/partials/widgets/prompt-injection.liquid @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/styles/base/index.css b/src/assets/styles/base/index.css index 41ab4396..50446a6e 100644 --- a/src/assets/styles/base/index.css +++ b/src/assets/styles/base/index.css @@ -560,6 +560,27 @@ li { display: none !important; } +.hidden-visually { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + white-space: nowrap; + width: 1px; + + &:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; + } +} + .screen-readers-only:not(:focus):not(:active) { clip: rect(0 0 0 0); clip-path: inset(50%);