My personal website

chore: reformat all

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>

+14 -8
+1 -1
flake.nix
··· 20 20 nixfmt.enable = true; 21 21 prettier = { 22 22 enable = true; 23 - excludes = [ "pnpm-lock.yaml" ]; 23 + excludes = [ "pnpm-lock.yaml" "flake.lock" ]; 24 24 }; 25 25 }; 26 26 };
+2 -2
src/js/stream.js
··· 47 47 48 48 const hlsUrl = new URL( 49 49 streamId + "/llhls.m3u8", 50 - "https://live.scrumplex.net" 50 + "https://live.scrumplex.net", 51 51 ); 52 52 hlsUrl.protocol = "https"; 53 53 54 54 const thumbUrl = new URL( 55 55 streamId + "/thumb.png", 56 - "https://live.scrumplex.net" 56 + "https://live.scrumplex.net", 57 57 ); 58 58 thumbUrl.protocol = "https"; 59 59
+5 -2
src/scss/_base.scss
··· 17 17 padding: 24px 24px 8px; 18 18 margin-bottom: 10px; 19 19 width: 100%; 20 - box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); 20 + box-shadow: 21 + 0 10px 20px rgba(0, 0, 0, 0.19), 22 + 0 6px 6px rgba(0, 0, 0, 0.23); 21 23 22 24 animation: panel-fade-in 600ms cubic-bezier(0.23, 1, 0.32, 1); 23 25 ··· 27 29 } 28 30 29 31 .sheet:target { 30 - animation: panel-fade-in 600ms cubic-bezier(0.23, 1, 0.32, 1), 32 + animation: 33 + panel-fade-in 600ms cubic-bezier(0.23, 1, 0.32, 1), 31 34 panel-highlight 2s linear 600ms; 32 35 } 33 36
+2 -1
src/scss/_buttons.scss
··· 14 14 font-size: 1rem; 15 15 font-weight: 400; 16 16 text-align: center; 17 - transition: background 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), 17 + transition: 18 + background 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), 18 19 box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); 19 20 20 21 @include alt-font;
+4 -2
src/scss/_misc.scss
··· 6 6 bottom: 0; 7 7 left: 0; 8 8 right: 0; 9 - animation: scroll-indicator-fade-in 600ms cubic-bezier(0.19, 1, 0.22, 1), 9 + animation: 10 + scroll-indicator-fade-in 600ms cubic-bezier(0.19, 1, 0.22, 1), 10 11 float 2s ease-in-out infinite alternate 600ms; 11 12 user-select: none; 12 13 cursor: default; ··· 99 100 margin: 8px 4px; 100 101 border-top-left-radius: 8px; 101 102 102 - transition: background 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), 103 + transition: 104 + background 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), 103 105 border-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); 104 106 105 107 @media (prefers-color-scheme: dark) {