Files
element-call/src/typography/Typography.module.css

36 lines
370 B
CSS
Raw Normal View History

2022-01-04 16:00:13 -08:00
.caption {
font-size: 12px;
line-height: 15px;
}
.micro {
font-size: 10px;
line-height: 12px;
}
.regular {
font-weight: 400;
}
.semiBold {
font-weight: 600;
}
.bold {
font-weight: 700;
}
.link {
2022-06-01 11:48:17 -04:00
color: var(--links);
2022-01-04 16:00:13 -08:00
}
.primary {
2022-06-01 11:48:17 -04:00
color: var(--accent);
2022-01-04 16:00:13 -08:00
}
2022-01-04 17:09:27 -08:00
.overflowEllipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}