style(buttons): Reducir altura botones detail panels (28→22px)
Z-Design V2: Botones más compactos para look más elegante. - ActionButtonsOpts.button_height: 28 → 22 - NavButtonsOpts.button_height: 28 → 22 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
9772d33b06
commit
ce93b1fe95
1 changed files with 4 additions and 4 deletions
|
|
@ -72,8 +72,8 @@ pub const ActionButtonsOpts = struct {
|
|||
can_delete: bool = false,
|
||||
/// Ancho de cada boton
|
||||
button_width: u32 = 80,
|
||||
/// Alto de cada boton
|
||||
button_height: u32 = 28,
|
||||
/// Alto de cada boton (Z-Design V2: reducido de 28 a 22px)
|
||||
button_height: u32 = 22,
|
||||
/// Espacio entre botones
|
||||
spacing: i32 = 8,
|
||||
/// Offset X desde el borde izquierdo del panel
|
||||
|
|
@ -96,8 +96,8 @@ pub const NavButtonsOpts = struct {
|
|||
can_last: bool = false,
|
||||
/// Ancho de cada boton
|
||||
button_width: u32 = 40,
|
||||
/// Alto de cada boton
|
||||
button_height: u32 = 28,
|
||||
/// Alto de cada boton (Z-Design V2: reducido de 28 a 22px)
|
||||
button_height: u32 = 22,
|
||||
/// Offset X desde el borde izquierdo del panel
|
||||
x_offset: i32 = 8,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue