aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Widgets/SocialMedia/SocialMedia.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-17 17:13:51 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-17 18:03:52 +0100
commit68138f0dcd8b3db2c23b31a20508726f245b5ba5 (patch)
tree0d6a31cfd0adcba4d4cb08666bc262bed6cb89ea /src/components/Widgets/SocialMedia/SocialMedia.module.scss
parent86d3e30ef02585d5089dce3aa2757ca2cb4e4edf (diff)
feat: implement dark mode
Diffstat (limited to 'src/components/Widgets/SocialMedia/SocialMedia.module.scss')
-rw-r--r--src/components/Widgets/SocialMedia/SocialMedia.module.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/Widgets/SocialMedia/SocialMedia.module.scss b/src/components/Widgets/SocialMedia/SocialMedia.module.scss
index 5dfdcb7..373cefb 100644
--- a/src/components/Widgets/SocialMedia/SocialMedia.module.scss
+++ b/src/components/Widgets/SocialMedia/SocialMedia.module.scss
@@ -46,3 +46,13 @@
transform: scale(0.9);
}
}
+
+:global {
+ [data-theme="dark"] {
+ :local {
+ .icon {
+ filter: brightness(0.85) contrast(1.1);
+ }
+ }
+ }
+}