Update padding

This commit is contained in:
Beingpax 2025-08-06 23:17:53 +05:45
parent 6d55e77398
commit e52016c1e5

View File

@ -50,6 +50,7 @@ struct MiniRecorderView: View {
Group { Group {
if windowManager.isExpanded { if windowManager.isExpanded {
RecorderPromptButton(showPopover: $showEnhancementPromptPopover) RecorderPromptButton(showPopover: $showEnhancementPromptPopover)
.padding(.leading, 3)
.transition(.scale(scale: 0.5).combined(with: .opacity)) .transition(.scale(scale: 0.5).combined(with: .opacity))
} }
} }
@ -60,12 +61,12 @@ struct MiniRecorderView: View {
// Fixed visualizer zone // Fixed visualizer zone
statusView statusView
.frame(maxWidth: .infinity) .frame(maxWidth: .infinity)
.padding(.horizontal, 6)
// Right button zone // Right button zone
Group { Group {
if windowManager.isExpanded { if windowManager.isExpanded {
RecorderPowerModeButton(showPopover: $showPowerModePopover) RecorderPowerModeButton(showPopover: $showPowerModePopover)
.padding(.trailing, 3)
.transition(.scale(scale: 0.5).combined(with: .opacity)) .transition(.scale(scale: 0.5).combined(with: .opacity))
} }
} }