From 5811c60f967ab2942177fdc33e5968cc5f3c523f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20M=C3=B6ller?= Date: Sat, 19 Aug 2023 21:54:31 +0200 Subject: [PATCH] run prettier --- styles/animations.css | 4 ++-- styles/variables.css | 14 +++++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/styles/animations.css b/styles/animations.css index e300b10..c3ac1fd 100644 --- a/styles/animations.css +++ b/styles/animations.css @@ -6,9 +6,9 @@ @keyframes move-gradient { 0% { - background-position: 0 center + background-position: 0 center; } 100% { - background-position: 100% center + background-position: 100% center; } } diff --git a/styles/variables.css b/styles/variables.css index 0ae619b..11c1d20 100644 --- a/styles/variables.css +++ b/styles/variables.css @@ -3,6 +3,18 @@ --text-primary: rgba(255, 255, 255, 0.8); --text-link: rgba(255, 255, 255, 1); --text-secondary: rgba(255, 255, 255, 0.4); - --fancy-gradient: linear-gradient(100deg, #ff377f 0%, #c984ff 15%, #3971ff 26%, #3971ff 33%, #3971ff 48%, #c984ff 59%, #ff377f 66%, #c984ff 81%, #3971ff 91%, #3971ff 100%); + --fancy-gradient: linear-gradient( + 100deg, + #ff377f 0%, + #c984ff 15%, + #3971ff 26%, + #3971ff 33%, + #3971ff 48%, + #c984ff 59%, + #ff377f 66%, + #c984ff 81%, + #3971ff 91%, + #3971ff 100% + ); --font-family: 'Recursive', monospace; }