Skip to content
Snippets Groups Projects
Commit f2447981 authored by Niklas Schrötler's avatar Niklas Schrötler
Browse files

PanelContent: Increased padding

parent 5fff08e9
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ const PanelContent = (props: {padding?: boolean, className?: string, children: a ...@@ -5,7 +5,7 @@ const PanelContent = (props: {padding?: boolean, className?: string, children: a
return ( return (
<div className={classNames( <div className={classNames(
"flex-1", "flex-1",
(props.padding ?? true) ? "px-5 pb-4" : "", (props.padding ?? true) ? "px-6 pb-5" : "",
props.className props.className
)}> )}>
{props.children} {props.children}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment