Initial data model migration

This commit is contained in:
2026-01-06 22:56:57 +01:00
parent 05ca6e1763
commit 001f0cffa8
142 changed files with 6474 additions and 413 deletions

39
less/tabs.less Normal file
View File

@@ -0,0 +1,39 @@
// Tabs navigation
.tabs {
.flex-row();
gap: 0;
border-bottom: 2px solid @color-border;
margin-bottom: @spacing-medium;
.item {
padding: @spacing-base @spacing-large;
font-family: @font-family-base;
font-size: @font-size-large;
font-weight: 700;
color: @color-secondary;
cursor: pointer;
border: none;
border-bottom: 3px solid transparent;
background: transparent;
transition: all 0.2s;
&:hover {
color: @color-primary;
background: lighten(@color-secondary, 70%);
}
&.active {
color: @color-primary;
border-bottom-color: @color-primary;
}
}
}
.tab {
display: none;
&.active {
display: block;
}
}