Lint and add hover styles for deleting prompts

This commit is contained in:
Andrew Kingston 2023-10-18 08:31:29 +01:00
parent c37538d611
commit dadb368279
3 changed files with 8 additions and 8 deletions

View File

@ -811,4 +811,11 @@
gap: 8px; gap: 8px;
display: flex; display: flex;
} }
b {
transition: color 130ms ease-out;
}
b:hover {
cursor: pointer;
color: var(--spectrum-global-color-gray-900);
}
</style> </style>

View File

@ -444,13 +444,6 @@
text-decoration: underline; text-decoration: underline;
} }
.remove {
display: none;
}
.remove.visible {
display: block;
}
.add { .add {
background: var(--spectrum-global-color-gray-200); background: var(--spectrum-global-color-gray-200);
padding: 4px; padding: 4px;

View File

@ -1,4 +1,4 @@
import { derived, get } from "svelte/store" import { derived } from "svelte/store"
import { import {
MaxCellRenderHeight, MaxCellRenderHeight,
MaxCellRenderWidthOverflow, MaxCellRenderWidthOverflow,