-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix tailwind merge and & tos links and lists colors
- Loading branch information
Showing
14 changed files
with
117 additions
and
147 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
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 |
---|---|---|
|
@@ -70,7 +70,8 @@ h2, | |
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
h6, | ||
li { | ||
overflow-wrap: break-word; | ||
margin-bottom: 20px; | ||
color: white; | ||
|
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,20 +1,20 @@ | ||
import fs from "fs"; | ||
import path from "path"; | ||
import { execSync } from "child_process"; | ||
import { dirname } from "path"; | ||
import { fileURLToPath } from "url"; | ||
import fs from "fs" | ||
import path from "path" | ||
import { execSync } from "child_process" | ||
import { dirname } from "path" | ||
import { fileURLToPath } from "url" | ||
|
||
const __dirname = dirname(fileURLToPath(import.meta.url)); | ||
const __dirname = dirname(fileURLToPath(import.meta.url)) | ||
|
||
const gitCommitDate = execSync("git log -1 --format=%ct").toString().trim(); | ||
const gitCommitDate = execSync("git log -1 --format=%ct").toString().trim() | ||
|
||
const VERSION_JSON = JSON.parse( | ||
fs.readFileSync(path.resolve(__dirname, "../", "version.json")).toString(), | ||
); | ||
fs.readFileSync(path.resolve(__dirname, "../", "version.json")).toString() | ||
) | ||
const channel = VERSION_JSON.channel | ||
? "-" + VERSION_JSON.channel + "." + gitCommitDate | ||
: ""; | ||
: "" | ||
|
||
const version = VERSION_JSON.version; | ||
const version = VERSION_JSON.version | ||
|
||
export const COMPLETE_VERSION = `${version}${channel}`; | ||
export const COMPLETE_VERSION = `${version}${channel}` |
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,2 +1,2 @@ | ||
export { unocssConfig } from "./unocss.config.js"; | ||
export { COMPLETE_VERSION as appVersion } from "./appVersion.js"; | ||
export { unocssConfig } from "./unocss.config.js" | ||
export { COMPLETE_VERSION as appVersion } from "./appVersion.js" |
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 +1 @@ | ||
export default {}; | ||
export default {} |
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
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
Oops, something went wrong.