Skip to content

Commit

Permalink
fixing issue with links
Browse files Browse the repository at this point in the history
  • Loading branch information
dortam888 committed Aug 11, 2024
1 parent 658e3f3 commit 59a2918
Showing 1 changed file with 9 additions and 21 deletions.
30 changes: 9 additions & 21 deletions src/components/UI/InformationTabs/InformationTabs.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,15 @@ li {
font-style: normal;
font-weight: 400;
line-height: 18px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
text-decoration: underline;
word-break: keep-all;
width: auto;
display: inline-block;
margin: 6px;
padding: 5px 10px;
}

.recommendedLabel {
Expand Down Expand Up @@ -166,24 +175,3 @@ a {
margin: 6px;
padding: 5px 10px;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: white;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
margin-left: -60px;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}

0 comments on commit 59a2918

Please sign in to comment.