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

PanelTitle: Adapted to new panel padding

parent 9c14d541
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ import React from 'react'; ...@@ -2,7 +2,7 @@ import React from 'react';
const PanelTitle = (props: {title: string}) => { const PanelTitle = (props: {title: string}) => {
return ( return (
<div className={"px-5 py-4 text-zinc-400"}> <div className={"px-6 py-4 text-zinc-400"}>
<h2>{props.title}</h2> <h2>{props.title}</h2>
</div> </div>
); );
......
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