fix: col drag handle orientation

This commit is contained in:
Aaryan Khandelwal
2026-01-22 17:07:51 +05:30
parent e7c84e86a9
commit 79cb0d3860

View File

@@ -57,7 +57,7 @@
.table-col-handle-container,
.table-row-handle-container {
& > button {
@apply py-1 opacity-0 rounded-sm outline-none;
@apply opacity-0 rounded-sm outline-none;
&.default-state {
@apply bg-layer-1 hover:bg-layer-1-hover border border-strong-1;
@@ -69,6 +69,22 @@
}
}
.table-col-handle-container {
& > button {
@apply px-1;
svg {
@apply rotate-90;
}
}
}
.table-row-handle-container {
& > button {
@apply py-1;
}
}
&:hover {
.table-col-handle-container,
.table-row-handle-container {