Files
feishin/src/shared/components/text-title/text-title.module.css
T
Jeff c1330d92b2 Migrate to Mantine v8 and Design Changes (#961)
* mantine v8 migration

* various design changes and improvements
2025-06-24 00:04:36 -07:00

28 lines
415 B
CSS

.root {
color: var(--theme-colors-foreground);
transition: color 0.2s ease-in-out;
}
.muted {
color: var(--theme-colors-foreground-muted);
}
.link {
cursor: pointer;
}
.link:hover {
color: var(--theme-colors-foreground);
text-decoration: underline;
}
.no-select {
user-select: none;
}
.overflow-hidden {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}