fix: styles

This commit is contained in:
Cory Dransfeldt 2024-05-23 17:34:52 -07:00
parent 35628169cf
commit 2f9872dc8e
No known key found for this signature in database
3 changed files with 10 additions and 5 deletions

4
package-lock.json generated
View file

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

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "17.0.0", "version": "17.0.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": {

View file

@ -10,12 +10,12 @@
flex-direction: column; flex-direction: column;
gap: var(--sizing-xs); gap: var(--sizing-xs);
margin-top: var(--sizing-base); margin-top: var(--sizing-base);
margin-bottom: var(--sizing-base);
.artist-meta { & .artist-meta {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: var(--sizing-xs); gap: var(--sizing-xs);
margin-top: var(--sizing-md);
& p { & p {
&.title { &.title {
@ -50,8 +50,13 @@
.artist-focus { .artist-focus {
& .artist-display { & .artist-display {
margin-top: 0; margin-top: 0;
margin-bottom: var(--sizing-base);
flex-direction: row; flex-direction: row;
gap: var(--sizing-md); gap: var(--sizing-md);
& .artist-meta {
margin-top: 0;
}
} }
} }
} }