Skip to content

Commit

Permalink
Rerender pages after font change
Browse files Browse the repository at this point in the history
  • Loading branch information
Arihant25 committed Apr 13, 2024
1 parent 17cedb6 commit a093811
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
3 changes: 1 addition & 2 deletions project/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,4 @@ def about():


if __name__ == "__main__":
freezer.freeze()
# app.run(port=8000, debug=DEBUG)
freezer.freeze()
7 changes: 6 additions & 1 deletion static/styles/about.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
/* IBM Plex Serif */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
background-color: #000000;
color: #fff;
font-family: 'CMU Serif';
font-family: "IBM Plex Serif", serif;
font-weight: 400;
font-style: normal;
}

.navbar {
Expand Down
7 changes: 6 additions & 1 deletion static/styles/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
/* IBM Plex Serif */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
background-color: #000000;
color: #fff;
font-family: 'CMU Serif';
font-family: "IBM Plex Serif", serif;
font-weight: 400;
font-style: normal;
}

.navbar {
Expand Down

0 comments on commit a093811

Please sign in to comment.