Skip to content

Commit

Permalink
fix: increased horizontal padding in usage blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementDreptin committed Jun 27, 2023
1 parent 754d15c commit 61ed90f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/usage/Usage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Usage ({ usageInfo }) {
>
{({ active, checked }) => (
<>
<div className={`flex flex-col justify-start items-center w-full h-full p-2 bg-white border-[3px] border-b-0${checked ? ' border-istcolor-green-dark' : ' border-white'}`}>
<div className={`flex flex-col justify-start items-center w-full h-full py-2 px-4 bg-white border-[3px] border-b-0${checked ? ' border-istcolor-green-dark' : ' border-white'}`}>
<div className='w-full flex justify-end gap-1'>
{usageInfo.tags.map(tag => (
<span key={tag} className='text-xs font-bold p-2 text-center text-istcolor-grey-link bg-istcolor-white'>{tag}</span>
Expand Down

0 comments on commit 61ed90f

Please sign in to comment.