fix(FN-2194): align prompt manager spacing and responsive gutters

- Add horizontal padding to the prompt manager container for consistent desktop gutters
- Add top margin to separate the prompt manager from surrounding sections
- Add a mobile-specific prompt manager padding override at the 768px breakpoint
This commit is contained in:
Fusion
2026-04-20 11:21:32 -07:00
committed by gsxdsm
parent c7266b7fbd
commit ee55075440

View File

@@ -15940,6 +15940,8 @@ html .column.drag-over * {
display: flex;
flex-direction: column;
gap: var(--space-md);
padding: 0 20px;
margin-top: var(--space-md);
}
.prompt-manager-tabs {
@@ -16577,6 +16579,10 @@ html .column.drag-over * {
/* Responsive */
@media (max-width: 768px) {
.prompt-manager {
padding: 0 14px;
}
.prompt-manager-tabs {
flex-wrap: wrap;
}