v0.3.1 bug fix

This commit is contained in:
2026-03-09 15:13:07 -04:00
parent 42ad779750
commit 8469ff7b6a
6 changed files with 28 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "jama-frontend",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"scripts": {
"dev": "vite",

View File

@@ -231,7 +231,7 @@
}
/* PC only: enforce minimum width on the input row so send button never disappears */
@media (pointer: fine) {
@media (pointer: fine) and (hover: hover) {
.input-row {
min-width: 480px;
}

View File

@@ -339,3 +339,26 @@ a { color: inherit; text-decoration: none; }
}
[data-theme="dark"] .about-table { border-color: var(--border); }
[data-theme="dark"] .about-row { border-color: var(--border); }
[data-theme="dark"] .attach-menu {
background: var(--surface);
border-color: var(--border);
}
[data-theme="dark"] .attach-item {
color: var(--text-primary);
}
[data-theme="dark"] .attach-item:hover {
background: var(--primary-light);
color: var(--primary);
}
[data-theme="dark"] .attach-item svg {
color: var(--text-secondary);
}
[data-theme="dark"] .mention-dropdown {
background: var(--surface);
border-color: var(--border);
}
[data-theme="dark"] .mention-item:hover,
[data-theme="dark"] .mention-item.active {
background: var(--primary-light);
}