23 lines
333 B
SCSS
23 lines
333 B
SCSS
.wrapper {
|
|
display: flex;
|
|
|
|
&.hovercard {
|
|
min-width: 100px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.indicator {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-content: center;
|
|
justify-content: center;
|
|
gap: 2px;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|