Files
element-call-Github/src/typography/Typography.module.css
Robin Townsend aa45261b0d Organize colors
2022-06-01 11:48:17 -04:00

36 lines
370 B
CSS

.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 {
color: var(--links);
}
.primary {
color: var(--accent);
}
.overflowEllipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}