From f20139d0faf95a811d6609b28a9c5cbcda470616 Mon Sep 17 00:00:00 2001 From: Sara Gerretsen Date: Tue, 23 Sep 2025 15:37:11 +0200 Subject: [PATCH] chore: reduced padding on panel containers --- src/style.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style.cpp b/src/style.cpp index 2bb2332..7fab4b6 100644 --- a/src/style.cpp +++ b/src/style.cpp @@ -19,7 +19,7 @@ Clay_ElementDeclaration PanelContainer(size_t depth, Clay_ElementDeclaration bas CLAY_BORDER_OUTSIDE(2) }; baseCfg.cornerRadius = defaultRadiusAll; - baseCfg.layout.padding = CLAY_PADDING_ALL(16); + baseCfg.layout.padding = CLAY_PADDING_ALL(8); return baseCfg; }