Workflows index

This commit is contained in:
2026-03-22 22:50:37 +02:00
parent 72af5a0610
commit 1c1d11cbe6
16 changed files with 179 additions and 18 deletions
+28
View File
@@ -0,0 +1,28 @@
.tabs {
padding-inline: 0;
li {
list-style: none;
margin: 0;
}
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
gap: 0.25em;
a {
text-decoration: none;
display: inline-block;
padding: 0.25em 0.5em;
border: 1px solid gray;
border-radius: 0.5em;
transition: background-color 0.2s, color 0.2s;
&.active, &:hover, &:focus {
background-color: var(--pico-primary);
color: white;
}
}
}