[READ-ONLY] Mirror of https://github.com/probablykasper/time-machine-inspector. Time Machine backup size inspector app
backup macos tauri time-machine
0

Configure Feed

Select the types of activity you want to include in your feed.

Add restrictive CSP

Kasper (May 25, 2022, 9:08 PM +0200) 95549f85 67fbea15

+7 -11
+1 -1
src-tauri/tauri.conf.json
··· 57 57 } 58 58 }, 59 59 "security": { 60 - "csp": null 60 + "csp": "default-src 'self'; style-src 'unsafe-inline' *" 61 61 } 62 62 } 63 63 }
+6
src/App.svelte
··· 46 46 <Page /> 47 47 48 48 <style lang="sass"> 49 + @font-face 50 + font-family: 'Open Sans' 51 + src: url("/OpenSans-VariableFont_wdth,wght.ttf") 52 + font-weight: 300 800 53 + font-stretch: 75% 125 54 + font-style: normal 49 55 :global(html) 50 56 height: 100% 51 57 background-color: hsl(230, 72%, 7%)
-10
src/index.html
··· 4 4 <meta charset="utf-8" /> 5 5 <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 6 7 - <style> 8 - @font-face { 9 - font-family: 'Open Sans'; 10 - src: url("/OpenSans-VariableFont_wdth,wght.ttf"); 11 - font-weight: 300 800; 12 - font-stretch: 75% 125; 13 - font-style: normal; 14 - } 15 - </style> 16 - 17 7 <link rel="icon" href="/favicon.png" /> 18 8 </head> 19 9 <body>