diff --git a/.codexdocsrc.sample b/.codexdocsrc.sample index 6de9278..c6d9ca7 100644 --- a/.codexdocsrc.sample +++ b/.codexdocsrc.sample @@ -3,9 +3,7 @@ "description": "A block-styled editor with clean JSON output", "menu": [ "Guides", - "API", - "Plugins", - {"title": "Support Project", "uri": "/support"} + {"title": "CodeX", "uri": "https://codex.so"} ], "landingFrameSrc": "https://codex.so/editor?frame=1", "startPage": "", diff --git a/src/frontend/styles/components/header.pcss b/src/frontend/styles/components/header.pcss index 4d69749..b2e6d31 100644 --- a/src/frontend/styles/components/header.pcss +++ b/src/frontend/styles/components/header.pcss @@ -4,7 +4,7 @@ padding: 0 var(--layout-padding-horisontal); border-bottom: 1px solid var(--color-line-gray); font-size: 15.8px; - line-height: 50px; + height: 50px; flex-wrap: wrap; position: relative; @@ -15,6 +15,7 @@ a { display: inline-block; text-decoration: none; + align-self: center; } &__logo { @@ -63,9 +64,12 @@ a:not(.docs-header__button) { color: inherit; + padding: 8px; + transition: background-color .3s; &:hover { - color: var(--color-link-active); + background-color: #F3F6F8; + border-radius: 8px; } } }