Merge pull request #2637 from ZhenShuo2021/feat/tabs

 Feat: add tabs shortcode
This commit is contained in:
Nuno C.
2025-12-22 17:09:40 +00:00
committed by GitHub
11 changed files with 400 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
.tab__button.tab--active {
border-bottom: 2px solid rgb(var(--color-primary-500));
}
.tab__panel {
display: none;
}
.tab__panel.tab--active {
display: block;
}