fix: chart styles

This commit is contained in:
Cory Dransfeldt 2024-06-17 17:17:24 -07:00
parent ef6987da19
commit 8ab44b56c4
No known key found for this signature in database
3 changed files with 10 additions and 6 deletions

4
package-lock.json generated
View file

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

View file

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

@ -48,10 +48,14 @@
& .title { & .title {
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
line-height: 1.5;
}
& .title,
& .subtext {
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden; overflow: hidden;
line-height: 1.5;
} }
& .title, & .title,
@ -64,12 +68,12 @@
& .subtext, & .subtext,
& .timestamp { & .timestamp {
font-size: var(--font-size-sm); font-size: var(--font-size-sm);
white-space: nowrap;
} }
& .timestamp { & .timestamp {
margin-left: var(--sizing-lg); margin-left: var(--sizing-lg);
text-align: right; text-align: right;
white-space: nowrap;
} }
& .count { & .count {
@ -77,7 +81,7 @@
} }
& .info { & .info {
max-width: calc(95% - var(--sizing-lg)); max-width: calc(75% - var(--sizing-lg));
} }
} }