Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@ const config: Config = {
items: [
{ to: '/docs', label: 'Introduction', position: 'left' },

{
label: 'Palisadoes',
position: 'left',
to: 'https://www.palisadoes.org/',
target: '_self',
},

{
label: 'Talawa',
position: 'left',
Expand Down
16 changes: 11 additions & 5 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,19 @@ main {
}

.navbar {
background: var(--sidebar-bg-color);
height: 5rem;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
font-size: 1.5rem;
background-color: var(--ifm-navbar-background-color);
box-shadow: var(--ifm-navbar-shadow);
padding: var(--ifm-navbar-padding-vertical)
var(--ifm-navbar-padding-horizontal);
height: var(--ifm-navbar-height);

/* background: var(--sidebar-bg-color);
height: var(--ifm-navbar-height);
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
font-size: 0.875rem;
font-family: sans-serif;
font-weight: inherit;
border-bottom: 1px solid var(--next-prev-border-color);
/* border-bottom: 1px solid var(--next-prev-border-color); */
}
.navbar:hover {
box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
Expand Down
Loading