fix: styles
This commit is contained in:
parent
46f341745c
commit
c759d82e28
3 changed files with 9 additions and 4 deletions
|
|
@ -5,6 +5,10 @@ import markdown from "@/shared/markdown"
|
||||||
|
|
||||||
const projects = await getProjects()
|
const projects = await getProjects()
|
||||||
|
|
||||||
|
export async function getStaticPaths() {
|
||||||
|
return projects
|
||||||
|
}
|
||||||
|
|
||||||
export default function Project({ name }: Project) {
|
export default function Project({ name }: Project) {
|
||||||
const {
|
const {
|
||||||
description,
|
description,
|
||||||
|
|
@ -31,6 +35,3 @@ export default function Project({ name }: Project) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getStaticPaths() {
|
|
||||||
return projects
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -121,7 +121,7 @@ const configs: Record<string, ProjectConfig> = {
|
||||||
inwatch: {
|
inwatch: {
|
||||||
type: "package-repo",
|
type: "package-repo",
|
||||||
owner: "errilaz",
|
owner: "errilaz",
|
||||||
status: ["archived"],
|
status: ["archived", "stable"],
|
||||||
description: "File watcher based on inotifywait.",
|
description: "File watcher based on inotifywait.",
|
||||||
},
|
},
|
||||||
squirt: {
|
squirt: {
|
||||||
|
|
|
||||||
|
|
@ -52,5 +52,9 @@ export default function Theme() {
|
||||||
width(0),
|
width(0),
|
||||||
height(0),
|
height(0),
|
||||||
]),
|
]),
|
||||||
|
$media(
|
||||||
|
"screen and (max-width: 768px)",
|
||||||
|
rule("table", [whiteSpace("unset")]),
|
||||||
|
),
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue