Files
element-call/src/Tooltip.module.css
T

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;
2022-09-26 20:17:37 -04:00
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;
2022-12-09 14:25:02 -05:00
font-size: var(--font-size-caption);
2022-09-26 20:17:37 -04:00
font-weight: 500;
2021-12-16 10:14:51 -08:00
text-align: center;
2021-12-14 22:00:00 -08:00
}