aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2025-06-06 02:22:39 +0300
committerValentin Popov <valentin@popov.link>2025-06-06 02:22:39 +0300
commite9612c756b0800d76560d6f5c685dee75f11e1c8 (patch)
treeb47b354c9c02c419c990687ead275d3feb870236
parenteb360820872df15e1315e4889a3ba6649c07dace (diff)
downloadpopov.link-e9612c756b0800d76560d6f5c685dee75f11e1c8.tar.xz
popov.link-e9612c756b0800d76560d6f5c685dee75f11e1c8.zip
feat: add IE11 compatibility
-rw-r--r--package.json5
-rw-r--r--src/scss/_variables.scss2
2 files changed, 6 insertions, 1 deletions
diff --git a/package.json b/package.json
index ae79782..8c1e225 100644
--- a/package.json
+++ b/package.json
@@ -4,6 +4,11 @@
"version": "2025.01.24",
"private": true,
"packageManager": "npm@11.4.1",
+ "browserslist": [
+ ">0.2%",
+ "not dead",
+ "IE 11"
+ ],
"scripts": {
"format": "prettier --write .",
"dev": "astro dev",
diff --git a/src/scss/_variables.scss b/src/scss/_variables.scss
index 1e0a4ef..039ba4f 100644
--- a/src/scss/_variables.scss
+++ b/src/scss/_variables.scss
@@ -1,5 +1,5 @@
$colorBg: #181818;
-$colorBgAlt: hwb(0deg 0% 100% / 20%);
+$colorBgAlt: rgba(0, 0, 0, 0.2);
$colorBgCode: #3b3d42;
$colorBlossom: #6da13f;
$colorFade: #598332;