added Tooltip component

This commit is contained in:
unknown 2021-08-10 16:58:16 +05:30
commit d0111e7741
4 changed files with 51 additions and 21 deletions

View file

@ -0,0 +1,10 @@
.tooltip {
padding: var(--sp-extra-tight) var(--sp-normal);
background-color: var(--bg-tooltip);
border-radius: var(--bo-radius);
box-shadow: var(--bs-popup);
.text {
color: var(--tc-tooltip);
}
}