docs: improve the sponsor page, remove the feedback page

This commit is contained in:
Hans Pagel
2021-01-18 15:07:49 +01:00
parent e6cbb5511f
commit b93168e97a
7 changed files with 60 additions and 43 deletions

View File

@@ -87,9 +87,7 @@
'app__link': true,
'app__link--exact': $router.currentRoute.path === item.link,
'app__link--active': $router.currentRoute.path.startsWith(item.link),
'app__link--draft': item.draft === true,
'app__link--pro': item.pro === true,
'app__link--new': item.new === true,
[`app__link--${item.type}`]: item.type !== null,
'app__link--with-children': !!item.items
}"
:to="item.redirect || item.link"
@@ -104,9 +102,7 @@
'app__link': true,
'app__link--exact': $router.currentRoute.path === item.link,
'app__link--active': $router.currentRoute.path.startsWith(item.link),
'app__link--draft': item.draft === true,
'app__link--pro': item.pro === true,
'app__link--new': item.new === true,
[`app__link--${item.type}`]: item.type !== null,
}"
:to="item.link"
exact

View File

@@ -255,6 +255,18 @@ $menuBreakPoint: 800px;
}
}
&--sponsor {
color: $colorWhite;
&::after {
content: '💖';
font-family: 'JetBrainsMono', monospace;
text-transform: uppercase;
padding: 0 0.5em;
border-radius: 5px;
}
}
&--with-children::after {
content: '';
color: rgba($colorWhite, 0.2);