Lint and add hover styles for deleting prompts
This commit is contained in:
parent
c37538d611
commit
dadb368279
|
@ -811,4 +811,11 @@
|
|||
gap: 8px;
|
||||
display: flex;
|
||||
}
|
||||
b {
|
||||
transition: color 130ms ease-out;
|
||||
}
|
||||
b:hover {
|
||||
cursor: pointer;
|
||||
color: var(--spectrum-global-color-gray-900);
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -444,13 +444,6 @@
|
|||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.remove {
|
||||
display: none;
|
||||
}
|
||||
.remove.visible {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.add {
|
||||
background: var(--spectrum-global-color-gray-200);
|
||||
padding: 4px;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { derived, get } from "svelte/store"
|
||||
import { derived } from "svelte/store"
|
||||
import {
|
||||
MaxCellRenderHeight,
|
||||
MaxCellRenderWidthOverflow,
|
||||
|
|
Loading…
Reference in New Issue