Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions firebase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ const app = initializeApp(firebaseConfig);
// Initialize Firebase Auth and GitHub Auth Provider
const auth = getAuth(app);
const provider = new GithubAuthProvider();
provider.addScope('gist');

export { auth, provider };
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<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=Inter:wght@100..900&display=swap" rel="stylesheet" />
<script src="https://kit.fontawesome.com/35852e2036.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitNotes</title>
</head>
Expand Down
4 changes: 4 additions & 0 deletions index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
$primary-color: #003b44;
$secondary-color: #ffffff;
$text-color: #3d3d3d;
$font-family: 'inter';
Loading