Skip to content

Commit

Permalink
update margin
Browse files Browse the repository at this point in the history
  • Loading branch information
JackySun9 committed May 30, 2024
1 parent 1cf33e8 commit 357dfdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ImageDiff.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const ImageDiff = ({ data, timestamp }) => {
<Tab eventKey={`tab-${segment}`} title={`${segment}(${groupDiffNumber[segment]})`} key={idx}>
{items.map(({ category, comparisons }, index) => (
<div key={index}>
<h3>{index} - {category} [{comparisons[0].urls}]</h3>
<h3 className='m-2'>{index} - {category} [{comparisons[0].urls}]</h3>
<Table striped bordered hover>
<thead>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const HomePage = () => {
<div className={`text-3xl text-center ${isDarkMode ? 'text-white' : 'text-black'}`}>Auto Tests</div>
</div>
<div className='pb-5'>
<div className={`text-2xl ${isDarkMode ? 'text-white' : 'text-black'}`}>Screenshot Tests:</div>
<div className={`m-2 text-2xl ${isDarkMode ? 'text-white' : 'text-black'}`}>Screenshot Tests:</div>
<div className='text-xl flex flex-row gap-6 m-3 flex-wrap'>
{directories.map((directory, index) => (
<div className="card w-80 bg-base-100 shadow-xl flex" key={index}>
Expand Down

0 comments on commit 357dfdd

Please sign in to comment.