diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-05-05 20:57:00 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-05-05 20:57:00 -0500 |
| commit | 4c8231e7e3e46f61f4455843300f5d3f01c5a195 (patch) | |
| tree | 28fc13f289c69bd5c28ebf10990c07abc47206ec /src | |
| parent | 4fda4eef9b58504a1352a777f7d9b6826a26559e (diff) | |
| download | immich-frame-4c8231e7e3e46f61f4455843300f5d3f01c5a195.tar.xz immich-frame-4c8231e7e3e46f61f4455843300f5d3f01c5a195.zip | |
add overpass font and put text under anchor
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.js | 1 | ||||
| -rw-r--r-- | src/style.css | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js index cac7bf4..c7e5885 100644 --- a/src/index.js +++ b/src/index.js @@ -1,3 +1,4 @@ +import "@fontsource/overpass" import "./style.css" import ImmichConnector from "./immich.js" import Page from "./pages.js" diff --git a/src/style.css b/src/style.css index 8149462..11ecba4 100644 --- a/src/style.css +++ b/src/style.css @@ -6,6 +6,7 @@ body { display: flex; flex-direction: column; margin: 0; + font-family: "Overpass", sans-serif; } main, #slideshow { @@ -86,7 +87,11 @@ footer { } #menu { - a { width: 100%; height: 48px } + a { + width: 100%; + padding: 12px; + svg { height: 24px } + } display: flex; width: 100%; padding: 16px; |
