diff --git a/src/components/BoxCorner.vue b/src/components/BoxCorner.vue
new file mode 100644
index 00000000..82bd6d46
--- /dev/null
+++ b/src/components/BoxCorner.vue
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
diff --git a/src/components/BoxJoin.vue b/src/components/BoxJoin.vue
new file mode 100644
index 00000000..0333768f
--- /dev/null
+++ b/src/components/BoxJoin.vue
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
diff --git a/src/views/minor/NavBar.vue b/src/views/minor/NavBar.vue
index 1da36c04..aad341b2 100644
--- a/src/views/minor/NavBar.vue
+++ b/src/views/minor/NavBar.vue
@@ -33,11 +33,15 @@
Full Documentation
@@ -58,6 +62,8 @@
import LogoWithMicroscope from '@/assets/img/logo.svg'
import type {Specimen} from '@/shared/Specimen'
+ import BoxJoin from '@/components/BoxJoin.vue'
+ import BoxCorner from '@/components/BoxCorner.vue'
const props = defineProps({
specimen: {
@@ -190,18 +196,29 @@
border: 1px solid var(--ns-color-black);
.leftdented {
- padding-right: 0.5em;
+ display: flex;
+ align-items: center;
}
- .tweakup {
- position: relative;
- bottom: 6px;
+ .boxing {
+ --width: 24px;
+
+ margin-left: 0.5ex;
+ margin-right: calc(0.5em - var(--width) / 2 + 2px);
+ width: var(--width);
+
+ /* looks better visually */
+ margin-bottom: -1.5px;
}
.nav-link {
color: var(--ns-color-black);
padding-top: 0ex;
padding-bottom: 0ex;
+ margin: 0;
+
+ /* for aligning with the boxing */
+ line-height: 1;
}
a {