mirror of
https://github.com/docmost/docmost.git
synced 2025-11-18 06:21:10 +10:00
* feat: implement space and workspace icons - Create reusable AvatarUploader component supporting avatars, space icons, and workspace icons - Add Sharp package for server-side image resizing and optimization - Create reusable AvatarUploader component supporting avatars, space icons, and workspace icons - Support removing icons * add workspace logo support - add upload loader - add white background to transparent image - other fixes and enhancements * dark mode * fixes * cleanup
26 lines
557 B
CSS
26 lines
557 B
CSS
.card {
|
|
background-color: var(--mantine-color-body);
|
|
@mixin hover {
|
|
box-shadow: var(--mantine-shadow-xs);
|
|
transform: scale(1.02);
|
|
}
|
|
}
|
|
|
|
.cardSection {
|
|
background: light-dark(var(--mantine-color-gray-1), var(--mantine-color-dark-6));
|
|
}
|
|
|
|
.title {
|
|
font-family:
|
|
Greycliff CF,
|
|
var(--mantine-font-family);
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.icon {
|
|
margin-right: rem(5px);
|
|
color: light-dark(var(--mantine-color-gray-5), var(--mantine-color-dark-2));
|
|
}
|