appoint team manager in UI

This commit is contained in:
2026-01-03 13:59:53 +01:00
parent 12b42e4a46
commit 051202edc9
4 changed files with 118 additions and 26 deletions

View File

@@ -20,3 +20,23 @@
position: absolute;
margin: 1rem;
}
.tooltip {
position: relative;
display: inline-block;
cursor: pointer;
}
/* Tooltip text */
.tooltiptext {
visibility: hidden;
width: 10rem;
padding: 0.25rem;
position: absolute;
z-index: 1;
}
/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
visibility: visible;
}