borgwarehouse/Components/UI/StorageBar/StorageBar.module.css
2024-08-31 21:01:01 +02:00

36 lines
536 B
CSS

.barContainer {
margin: auto;
}
.barBackground {
background-color: #704dff5e;
border-radius: 3px;
height: 19px;
width: 100%;
position: relative;
}
.progressionStyle {
background-color: #704dff;
border-radius: 3px;
height: 19px;
width: 100%;
}
.tooltip {
visibility: hidden;
width: auto;
height: auto;
color: #fff;
text-align: center;
opacity: 0;
transition: 0.5s opacity;
position: absolute;
left: calc(30%);
top: 0px;
}
.barBackground:hover .tooltip {
visibility: visible;
opacity: 1;
}