chore: reduced padding on panel containers

This commit is contained in:
Sara Gerretsen 2025-09-23 15:37:11 +02:00
parent 19f21e5867
commit f20139d0fa

View file

@ -19,7 +19,7 @@ Clay_ElementDeclaration PanelContainer(size_t depth, Clay_ElementDeclaration bas
CLAY_BORDER_OUTSIDE(2) CLAY_BORDER_OUTSIDE(2)
}; };
baseCfg.cornerRadius = defaultRadiusAll; baseCfg.cornerRadius = defaultRadiusAll;
baseCfg.layout.padding = CLAY_PADDING_ALL(16); baseCfg.layout.padding = CLAY_PADDING_ALL(8);
return baseCfg; return baseCfg;
} }