This commit is contained in:
Kenneth Jannette
2024-01-13 01:01:11 -06:00
parent 9430f886cf
commit 1b67e82789
3 changed files with 49 additions and 1 deletions

24
src/styles/tooltip.scss Normal file
View File

@@ -0,0 +1,24 @@
.tooltip-container {
display: inline;
justify-content: center;
align-items: center;
margin: auto;
height: 30px;
width: 30px;
margin: 0px 6px;
padding: 0px 2px;
background-color: yellow;
}
.tooltip-text {
font-size: 12px;
visibility: hidden;
opacity: 0;
}
.tooltip-container:hover .tooltip-text:hover {
font-size: 12px;
visibility: visible;
opacity: 1;
z-index: 9;
}