element-call/src/Tooltip.module.css

15 lines
316 B
CSS
Raw Normal View History

2021-12-14 22:00:00 -08:00
.tooltip {
2022-06-01 11:48:17 -04:00
background-color: var(--system);
2021-12-14 22:00:00 -08:00
flex-direction: row;
justify-content: center;
align-items: center;
padding: 10px;
2022-06-01 11:48:17 -04:00
color: var(--primary-content);
2021-12-14 22:00:00 -08:00
border-radius: 8px;
max-width: 135px;
width: max-content;
font-size: var(--font-size-caption);
font-weight: 500;
2021-12-16 10:14:51 -08:00
text-align: center;
2021-12-14 22:00:00 -08:00
}