mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
neutral nav button
This commit is contained in:
@@ -64,6 +64,7 @@ const NavigationButtons = () => {
|
||||
>
|
||||
{docs.prevDoc && (
|
||||
<NavButton
|
||||
$neutral
|
||||
$fullwidth={!docs.nextDoc}
|
||||
onClick={() => handleNavigate(docs.prevDoc)}
|
||||
>
|
||||
@@ -79,6 +80,7 @@ const NavigationButtons = () => {
|
||||
|
||||
{docs.nextDoc && (
|
||||
<NavButton
|
||||
$neutral
|
||||
$fullwidth={!docs.prevDoc}
|
||||
onClick={() => handleNavigate(docs.nextDoc)}
|
||||
>
|
||||
@@ -147,9 +149,12 @@ const NavButton = styled(RealButton)`
|
||||
border-radius: 2px;
|
||||
line-height: 18px;
|
||||
width: 60%;
|
||||
background: none;
|
||||
shadow: 0 0 0 0 black;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
background: none;
|
||||
}
|
||||
|
||||
${(props) => css`
|
||||
|
||||
Reference in New Issue
Block a user