Group message action buttons

This commit is contained in:
Shantur Rathore
2025-12-01 23:42:01 +00:00
parent 5384ff8e80
commit 1a1aee8f91
2 changed files with 42 additions and 19 deletions

View File

@@ -31,6 +31,24 @@
@apply flex items-center gap-2;
}
.message-action-group {
@apply flex items-center gap-2;
}
.message-action-button {
@apply bg-transparent border border-[var(--border-base)] text-[var(--text-muted)] cursor-pointer px-3 py-0.5 rounded text-xs font-semibold leading-none transition-all duration-200 flex items-center justify-center h-6;
}
.message-action-button:hover {
background-color: var(--surface-hover);
border-color: var(--accent-primary);
color: var(--accent-primary);
}
.message-action-button:active {
transform: scale(0.95);
}
.message-timestamp {
@apply text-[11px] text-[var(--text-muted)];
}