Skip to content

Commit

Permalink
Update font styles and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
BumpyClock committed Apr 20, 2024
1 parent 5e7843d commit cdaf26e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master_digests-pwa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: self-hosted

steps:
- uses: actions/checkout@v4
Expand All @@ -36,7 +36,7 @@ jobs:
path: release.zip

deploy:
runs-on: ubuntu-latest
runs-on: self-hosted
needs: build
environment:
name: 'Production'
Expand Down
18 changes: 5 additions & 13 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,11 @@
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap"
/>
</noscript>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Open+Sans:[email protected]"
/>
<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=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<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=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">


<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
Expand Down
2 changes: 1 addition & 1 deletion src/components/ReaderViewContent/ReaderViewContent.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
.reader-view-page-content p{
font-family: var(--font-family);
line-height: 2.33;
font-weight: var(--font-weight-medium);
font-weight: var(--font-weight-light);
font-size: 1.2rem;
}

Expand Down
6 changes: 4 additions & 2 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
--dracula-purple: rgba(189, 147, 249, 1);
--dracula-red: rgba(255, 85, 85, 1);
--dracula-yellow: rgba(241, 250, 140, 1);
--font-family: "Lato" ,"GeistVariableVF","Open Sans","Noto Sans","Segoe UI Variable Small Light", "Roboto",
sans-serif;
--font-family: "Noto Sans","Segoe UI Variable Small Light", "Roboto", sans-serif;
--font-weight-light: 300;
--font-weight-regular: 400;
--font-weight-medium: 500;
Expand Down Expand Up @@ -278,6 +277,9 @@ select:focus {

}

.App {
scroll-behavior: smooth;
}


.date {
Expand Down

0 comments on commit cdaf26e

Please sign in to comment.