style(website): minor improvements to get started

This commit is contained in:
Elian Doran 2025-09-27 21:14:20 +03:00
parent 5905299331
commit cbaae52a7e
No known key found for this signature in database
2 changed files with 8 additions and 3 deletions

View File

@ -138,7 +138,7 @@ export const downloadMatrix: DownloadMatrix = {
downloads: { downloads: {
tarX64: { tarX64: {
recommended: true, recommended: true,
name: "x86 (.tar.xz)", name: "x64 (.tar.xz)",
url: `https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-Server-v${version}-linux-x64.tar.xz`, url: `https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-Server-v${version}-linux-x64.tar.xz`,
}, },
tarArm64: { tarArm64: {

View File

@ -34,9 +34,14 @@
.quick-start { .quick-start {
border: 1px solid var(--muted-color); border: 1px solid var(--muted-color);
padding: 0.5em; padding: 0.75em;
border-radius: 6px; border-radius: 6px;
@media (prefers-color-scheme: dark) {
border: none;
background-color: black;
}
code { code {
text-wrap: wrap; text-wrap: wrap;
color: var(--muted-color); color: var(--muted-color);