Files
feishin/src/shared/components/text/text.module.css
T
2025-11-29 19:30:49 -08:00

29 lines
450 B
CSS

.root {
font-family: var(--font-family);
color: var(--theme-colors-foreground);
user-select: auto;
}
.muted {
color: var(--theme-colors-foreground-muted);
}
.root.link {
cursor: pointer;
}
.root.link:hover {
color: var(--theme-colors-foreground);
text-decoration: underline;
}
.root.overflow-hidden {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.no-select {
user-select: none;
}