Skip to content

Commit

Permalink
Title and theme color
Browse files Browse the repository at this point in the history
  • Loading branch information
idna001 committed Jan 28, 2024
1 parent fc18f17 commit e12ffcf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">

<meta name="theme-color" content="#d6c077" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#d6c077" media="(prefers-color-scheme: dark)">
<meta name="theme-color" content="#fff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#ffff" media="(prefers-color-scheme: dark)">


<meta name="description" content="Number cruncher idna-roulette"/>
Expand Down
11 changes: 5 additions & 6 deletions src/components/TableComponent/TableComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@ const TableComponent = ({ history }) => {
return (
<table className={styles.table}>
<thead>
<tr>
<th>Nr 1</th>
<th>Nr 2</th>
<th colSpan="4">Calculation</th>

</tr>
<tr>
<th>Nr 1</th>
<th>Nr 2</th>
<th colSpan="4">Next lucky numbers</th>
</tr>
</thead>
<tbody>
{history.map((entry, index) => (
Expand Down

0 comments on commit e12ffcf

Please sign in to comment.