This repository has been archived by the owner on Jul 29, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
62 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.root { | ||
display: flex; | ||
justify-content: space-between; | ||
font-size: 14px; | ||
padding: 8px 16px; | ||
border-radius: 8px; | ||
|
||
a { | ||
color: #666; | ||
} | ||
} | ||
.branding a { | ||
text-decoration: none; | ||
} | ||
.nav a { | ||
margin-left: 6px; | ||
text-decoration: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,19 @@ | ||
module.exports = { | ||
env: { | ||
dbUser: "quoke", | ||
dbPassword: "change me", | ||
jwtSecret: "a long secret that only you know", | ||
recaptchaSecret: "a reCAPTCHA secret token" | ||
const withSass = require("@zeit/next-sass"); | ||
|
||
module.exports = withSass({ | ||
cssModules: true, | ||
cssLoaderOptions: { | ||
importLoaders: 1, | ||
localIdentName: "[local]___[hash:base64:5]" | ||
} | ||
}; | ||
/** | ||
* Environment variables are now handled | ||
* in the Zeit Now environment. | ||
*/ | ||
// env: { | ||
// dbUser: "quoke", | ||
// dbPassword: "change me", | ||
// jwtSecret: "a long secret that only you know", | ||
// recaptchaSecret: "a reCAPTCHA secret token" | ||
// } | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters