Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Plik - Temporary file upload service" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<!-- Prevent theme flash: hide page and suppress backgrounds until data-theme is resolved -->
<style>
html:not([data-theme]) {
Expand Down
9 changes: 9 additions & 0 deletions webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"dependencies": {
"@codemirror/language-data": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@fontsource-variable/inter": "^5.3.0",
"@tailwindcss/vite": "^4.1.18",
"age-encryption": "^0.3.0",
"codemirror": "^6.0.2",
Expand Down
4 changes: 3 additions & 1 deletion webapp/src/style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
@import "tailwindcss";
/* Self-hosted Inter (variable, all subsets) so the webapp never fetches fonts from a CDN */
@import "@fontsource-variable/inter";

/* ── Custom Design Tokens ── */
@theme {
Expand Down Expand Up @@ -33,7 +35,7 @@
@layer base {
body {
@apply bg-surface-950 text-surface-200 antialiased;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
font-family: 'Inter Variable', system-ui, -apple-system, sans-serif;
overflow-x: hidden;
}

Expand Down
Loading