diff options
| author | David Hill <[email protected]> | 2025-12-02 17:06:37 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2025-12-02 17:06:37 +0000 |
| commit | 39d5bdff4bc5600e65debeadc94a27b025dfd9bb (patch) | |
| tree | 43a960bca79176cc06d42fb80ffd0ad6bf287c98 /packages/console/app/src/routes/index.css | |
| parent | 58b30d678a910378a554b2ab580da4a2e17796cd (diff) | |
| download | opencode-39d5bdff4bc5600e65debeadc94a27b025dfd9bb.tar.gz opencode-39d5bdff4bc5600e65debeadc94a27b025dfd9bb.zip | |
fix: add docs button
Diffstat (limited to 'packages/console/app/src/routes/index.css')
| -rw-r--r-- | packages/console/app/src/routes/index.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/console/app/src/routes/index.css b/packages/console/app/src/routes/index.css index 5cb91a6fb..92de172e1 100644 --- a/packages/console/app/src/routes/index.css +++ b/packages/console/app/src/routes/index.css @@ -617,6 +617,25 @@ body { padding: var(--vertical-padding) var(--padding); color: var(--color-text); + a { + background: var(--color-background-strong); + padding: 8px 12px 8px 20px; + color: var(--color-text-inverted); + border: none; + border-radius: 4px; + font-weight: 500; + cursor: pointer; + margin-top: 40px; + display: flex; + width: fit-content; + gap: 12px; + text-decoration: none; + } + + a:hover { + background: var(--color-background-strong-hover); + } + ul { padding: 0; li { |
