From e4703374d0d8a808e7897dc39cc7563a577f2c41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Str=C3=B8m-Andersen?= Date: Fri, 18 Sep 2026 20:40:52 +0200 Subject: [PATCH 1/3] chore: rename application --- index.html | 2 +- src/components/Header/Header.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 7e10677..95d87f3 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - Prosjekt 1 + Readr -

Applikasjonsnavn

+

Readr

); From 5ca06fadfe6cba509dbf8529c9d3036fbe167536 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Str=C3=B8m-Andersen?= Date: Fri, 18 Sep 2026 20:41:25 +0200 Subject: [PATCH 2/3] chore: remove unused button --- src/components/Header/Header.module.css | 13 ------------- src/components/Header/Header.tsx | 1 - 2 files changed, 14 deletions(-) diff --git a/src/components/Header/Header.module.css b/src/components/Header/Header.module.css index e60ae3c..ac33069 100644 --- a/src/components/Header/Header.module.css +++ b/src/components/Header/Header.module.css @@ -11,16 +11,3 @@ margin: 0; font-size: 1.5rem; } - -.favorites-button { - background-color: white; - border: 1px solid var(--border-color); - border-radius: var(--border-radius); - padding: 8px 16px; - cursor: pointer; - font-size: 0.925rem; - - &:hover { - border-color: var(--theme-color); - } -} diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx index 438940d..aea33d1 100644 --- a/src/components/Header/Header.tsx +++ b/src/components/Header/Header.tsx @@ -4,7 +4,6 @@ function Header() { return (

Readr

-
); } From 3bf6d140e01e2bb32dc26d0fadda9a2d44129e7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Str=C3=B8m-Andersen?= Date: Fri, 18 Sep 2026 20:41:47 +0200 Subject: [PATCH 3/3] feat: add margin to pagination --- src/components/Pagination/Pagination.module.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Pagination/Pagination.module.css b/src/components/Pagination/Pagination.module.css index 0211cc7..b0064cd 100644 --- a/src/components/Pagination/Pagination.module.css +++ b/src/components/Pagination/Pagination.module.css @@ -4,6 +4,7 @@ justify-content: center; gap: 1rem; padding: 0.75rem 0; + margin-bottom: 40px; } .pagination-button {