Fix bar chart: w-full replaced with flex-1 for proper justify-between layout
This commit is contained in:
parent
b143f96c15
commit
05c51f5f17
|
|
@ -12,7 +12,7 @@ const BarChart = ({ data = [], height = 80, barW = 24 }) => {
|
|||
return (
|
||||
<div
|
||||
key={i}
|
||||
className='w-full flex justify-center'
|
||||
className='flex flex-1 justify-center'
|
||||
>
|
||||
<div
|
||||
className='rounded-sm bg-blue-500'
|
||||
|
|
|
|||
Loading…
Reference in New Issue