Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
.tooltip {
position: relative;
display: inline-block;
}
.error{
border:1px solid red;
}
.tooltip .tooltiptext {
visibility: hidden;
background-color: #c64b4b;
border: solid 1px #a1363b;
box-shadow: 1px 1px 3px #a1363b;
color: white;
font-size: 12px;
padding: 10px;
min-height: 35px;
min-width: 200px;
box-sizing: border-box;
border-radius: 5px;
text-align: center;
/* Position the tooltip */
position: absolute;
z-index: 1;
top: -1px;
right: 105%;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
.tooltip .tooltiptext::after {
content: " ";
position: absolute;
top: 50%;
left: 100%; /* To the right of the tooltip */
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent transparent #c64b4b;
}
.error {
border: solid 1px #c64b4b !important;
}
.profile-text{
margin-left:-10px;
}