Skip to content

Commit

Permalink
feat: add roboto font for better ui
Browse files Browse the repository at this point in the history
  • Loading branch information
zelfroster committed Oct 14, 2023
1 parent f08eb9c commit 475fcf2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webui-src/app/scss/base/_reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ html:focus-within {
body {
text-rendering: optimizeSpeed;
line-height: 1.5;
font-family: Arial, Helvetica, sans-serif !important;
font-family: 'Roboto', Arial, Helvetica, sans-serif !important;
}

/* A elements that don't have a class get default styles */
Expand Down
10 changes: 8 additions & 2 deletions webui-src/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>RetroShare</title>
<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=Roboto:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<link href="images/retroshare.svg" rel="icon" data-n-head="true" type="image/svg" />
<title>RetroShare</title>
<script src="app.js"></script>
</head>

Expand Down

0 comments on commit 475fcf2

Please sign in to comment.