My personal website

chore: reformat all

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

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