This commit is contained in:
Philipinho
2026-05-19 02:37:14 +01:00
parent 1997610cb8
commit cc691d1138
3 changed files with 78 additions and 9 deletions
@@ -1,4 +1,5 @@
.row {
position: relative;
display: flex;
align-items: center;
gap: var(--mantine-spacing-sm);
@@ -38,12 +39,21 @@
color: light-dark(var(--mantine-color-gray-6), var(--mantine-color-dark-2));
font-size: var(--mantine-font-size-xs);
flex-shrink: 0;
transition: opacity 100ms ease;
.row:hover &,
.row:focus-within & {
opacity: 0;
}
}
.useButton {
position: absolute;
top: 50%;
right: var(--mantine-spacing-sm);
transform: translateY(-50%);
opacity: 0;
transition: opacity 100ms ease;
flex-shrink: 0;
.row:hover &,
.row:focus-within &,