🤡 Only for sync remote repository codes.

This commit is contained in:
elkan1788 2024-02-18 16:21:12 +08:00
parent e08456419c
commit 40c36a70f0
2 changed files with 26 additions and 0 deletions

View File

@ -34,6 +34,10 @@
} }
} }
// a + ul {
// top: calc(30% + 5px);
// }
.badge { .badge {
background: white; background: white;
border-radius: 10px; border-radius: 10px;
@ -41,5 +45,24 @@
padding: 1px 4px; padding: 1px 4px;
text-shadow: 1px 1px 0 rgba(0, 0, 0, .1); text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
} }
.menu-item-shrink-icon {
margin-left: 5px;
}
}
}
.menu-children {
display: none;
transition: transform 1s ease-in-out;
transform: translateY(-100%);
// position: absolute;
// z-index: 999;
&.expand {
display: block;
max-height: 400px;
transition: transform 1.5s ease-in;
transform: translateY(-100%);
} }
} }

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module github.com/hugo-next/hugo-theme-next
go 1.18