chore: update icons + border radii

This commit is contained in:
Cory Dransfeldt 2024-07-11 14:20:08 -07:00
parent 06f3e1a539
commit 7be4899507
No known key found for this signature in database
6 changed files with 8 additions and 19 deletions

12
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.1.6", "version": "20.2.6",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.1.6", "version": "20.2.6",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",
@ -20,7 +20,7 @@
"@11ty/eleventy-fetch": "^4.0.1", "@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0", "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0", "@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0",
"@cdransf/eleventy-plugin-tabler-icons": "^1.8.0", "@cdransf/eleventy-plugin-tabler-icons": "^1.9.0",
"@supabase/supabase-js": "^2.44.3", "@supabase/supabase-js": "^2.44.3",
"dotenv-flow": "^4.1.0", "dotenv-flow": "^4.1.0",
"html-minifier-terser": "^7.2.0", "html-minifier-terser": "^7.2.0",
@ -292,9 +292,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/@cdransf/eleventy-plugin-tabler-icons": { "node_modules/@cdransf/eleventy-plugin-tabler-icons": {
"version": "1.8.0", "version": "1.9.0",
"resolved": "https://registry.npmjs.org/@cdransf/eleventy-plugin-tabler-icons/-/eleventy-plugin-tabler-icons-1.8.0.tgz", "resolved": "https://registry.npmjs.org/@cdransf/eleventy-plugin-tabler-icons/-/eleventy-plugin-tabler-icons-1.9.0.tgz",
"integrity": "sha512-s3cYbldRrdMRSnWbf/F/Y8mViV8CCcH4e3vBbYDrM/frrvAC3SwHGtl6amMeKtlZTZ+brbGcZxiKrm84v7QiAQ==", "integrity": "sha512-EDVq/4Qud/7/BVqgAPwzjGBCgk4WQtWJ5YFY13p7RrMYpEoFkKd++5iaO/PgTsWaCXd47dTGiQNKp+kpb+HfAQ==",
"dev": true, "dev": true,
"license": "MIT" "license": "MIT"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.1.6", "version": "20.2.6",
"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": {
@ -30,7 +30,7 @@
"@11ty/eleventy-fetch": "^4.0.1", "@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0", "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0", "@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0",
"@cdransf/eleventy-plugin-tabler-icons": "^1.8.0", "@cdransf/eleventy-plugin-tabler-icons": "^1.9.0",
"@supabase/supabase-js": "^2.44.3", "@supabase/supabase-js": "^2.44.3",
"dotenv-flow": "^4.1.0", "dotenv-flow": "^4.1.0",
"html-minifier-terser": "^7.2.0", "html-minifier-terser": "^7.2.0",

View file

@ -6,7 +6,6 @@
margin: var(--sizing-base) 0; margin: var(--sizing-base) 0;
padding: var(--sizing-md); padding: var(--sizing-md);
border: 1px solid; border: 1px solid;
border-radius: var(--rounded);
& p { & p {
font-size: var(--font-size-sm); font-size: var(--font-size-sm);

View file

@ -4,7 +4,6 @@ button {
&:not(.theme-toggle) { &:not(.theme-toggle) {
border: 2px solid var(--accent-color); border: 2px solid var(--accent-color);
border-radius: var(--rounded-full);
padding: var(--sizing-sm) var(--sizing-lg); padding: var(--sizing-sm) var(--sizing-lg);
margin: 0 var(--sizing-xs) var(--sizing-md) 0; margin: 0 var(--sizing-xs) var(--sizing-md) 0;
cursor: pointer; cursor: pointer;

View file

@ -1,7 +1,6 @@
.progress-bar-wrapper { .progress-bar-wrapper {
display: flex; display: flex;
background-color: rgba(217, 222, 228, .6); background-color: rgba(217, 222, 228, .6);
border-radius: var(--rounded-lg);
overflow: hidden; overflow: hidden;
height: var(--sizing-lg); height: var(--sizing-lg);
width: 100%; width: 100%;

View file

@ -103,14 +103,6 @@
--sizing-svg-sm: 18px; --sizing-svg-sm: 18px;
--sizing-svg-base: 24px; --sizing-svg-base: 24px;
/* radii */
--rounded-none: 0;
--rounded-sm: .125rem;
--rounded: .25rem;
--rounded-md: .375rem;
--rounded-lg: .5rem;
--rounded-full: 9999px;
/* aspect ratios */ /* aspect ratios */
--aspect-ratio-square: 1/1; --aspect-ratio-square: 1/1;
--aspect-ratio-vertical: 2/3; --aspect-ratio-vertical: 2/3;