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

48 lines
700 B
CSS
Raw Normal View History

2023-01-03 16:58:38 +00:00
/*
Copyright 2022-2024 New Vector Ltd.
2023-01-03 16:58:38 +00:00
SPDX-License-Identifier: AGPL-3.0-only
Please see LICENSE in the repository root for full details.
2023-01-03 16:58:38 +00:00
*/
2022-01-04 16:00:13 -08:00
.caption {
2022-12-09 14:25:02 -05:00
font-size: var(--font-size-caption);
line-height: var(--font-size-body);
2022-01-04 16:00:13 -08:00
}
.micro {
2022-12-09 14:25:02 -05:00
font-size: var(--font-size-micro);
line-height: var(--font-size-caption);
2022-01-04 16:00:13 -08:00
}
.regular {
font-weight: 400;
}
.semiBold {
font-weight: 600;
}
.bold {
font-weight: 700;
}
.link {
2023-08-28 16:45:17 -04:00
color: var(--cpd-color-text-link-external);
2022-01-04 16:00:13 -08:00
}
.link:hover {
text-decoration: underline;
opacity: initial;
}
2022-01-04 16:00:13 -08:00
.primary {
2023-08-28 16:45:17 -04:00
color: var(--cpd-color-text-action-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;
}