Skip to content

Commit

Permalink
remove title and nav on homepage (#71)
Browse files Browse the repository at this point in the history
* remove title from homepage, lower font size a bit

* remove toc from homepage

* remove nav on homepage as well
  • Loading branch information
sawka authored Oct 10, 2024
1 parent f70a85d commit 844e177
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
sidebar_position: 1
id: "index"
title: "Home"
hide_title: true
hide_table_of_contents: true
---

import {Card, CardGroup} from '@site/src/components/card.tsx';

## Welcome to Wave Terminal
# Welcome to Wave Terminal

Wave is an [open-source](https://github.com/wavetermdev/waveterm) terminal that adds the ability to launch graphical widgets, controlled and integrated directly with the CLI. We support MacOS, Linux, and Windows ([Downloads](https://waveterm.dev/download)).

Expand Down
12 changes: 12 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@
--ifm-color-primary-lightest: #8cd47d;
}

.docs-doc-id-index article nav {
display: none;
}

body .markdown h1:first-child {
--ifm-h1-font-size: 2rem;
}

body .markdown h2 {
--ifm-h2-font-size: 1.75rem;
}

/* Adds extra margin between last navbar item and the dark mode toggle. */
.navbar__items--right .navbar__item:last-of-type {
margin-right: 4px;
Expand Down

0 comments on commit 844e177

Please sign in to comment.