chore: styles

This commit is contained in:
Cory Dransfeldt 2024-08-14 19:58:59 -07:00
parent 694e982aa2
commit 47a71087c4
No known key found for this signature in database
4 changed files with 7 additions and 6 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.3.4", "version": "22.3.5",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.3.4", "version": "22.3.5",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.3.4", "version": "22.3.5",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,8 +1,10 @@
* + .banner { * + .banner,
:not(* + .banner) .banner:first-of-type {
margin-top: var(--sizing-base); margin-top: var(--sizing-base);
} }
.banner:has(+ *) { .banner:has(+ *),
:not(* + .banner) .banner:last-of-type {
margin-bottom: var(--sizing-base); margin-bottom: var(--sizing-base);
} }

View file

@ -4,7 +4,6 @@
overflow: hidden; overflow: hidden;
height: var(--sizing-lg); height: var(--sizing-lg);
width: 100%; width: 100%;
margin-bottom: var(--sizing-xs);
} }
.progress-bar { .progress-bar {