fix(FN-1845): make routine editor action buttons sticky

- Add position: sticky with bottom: 0 and z-index: 1 to routine editor action buttons
- Ensures action buttons remain visible when scrolling in the routine editor
- Applied to both default and mobile responsive variants
This commit is contained in:
Fusion
2026-04-15 18:55:27 -07:00
committed by gsxdsm
parent c6ad3da8cc
commit e4eac5c03b

View File

@@ -16705,6 +16705,9 @@ html .column.drag-over * {
padding: 16px 0 0;
border-top: 1px solid var(--border);
margin-top: var(--space-lg);
position: sticky;
bottom: 0;
z-index: 1;
}
@media (max-width: 768px) {
@@ -16913,6 +16916,9 @@ html .column.drag-over * {
padding: 16px 0 0;
border-top: 1px solid var(--border);
margin-top: var(--space-lg);
position: sticky;
bottom: 0;
z-index: 1;
}
.routine-trigger-type-selector {