Added front page, moved shelf navigation to header.

This commit is contained in:
2023-06-25 23:50:08 +02:00
parent 77085c5755
commit b3e5769d39
27 changed files with 554 additions and 109 deletions

View File

@@ -22,6 +22,12 @@
font-size: 1rem;
font-weight: bold;
&:hover {
cursor: pointer;
background: var(--primary);
color: var(--text-light);
}
&:focus {
outline: none;
}

View File

@@ -3,6 +3,7 @@
@import 'inputs';
@import 'forms';
@import 'markdown';
@import 'tooltip';
html,
body,

6
assets/css/tooltip.css Normal file
View File

@@ -0,0 +1,6 @@
.tooltip {}
.menu-item {
display: block;
padding: .5rem;
}

View File

@@ -90,4 +90,5 @@ export {
post,
patch,
del,
del as delete,
};