Skip to content

Commit

Permalink
Merge pull request #10 from idna001/feature-bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
idna001 authored Jan 29, 2024
2 parents 1bd3055 + 89face8 commit 02bdca2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 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
12 changes: 5 additions & 7 deletions src/components/TableComponent/TableComponent.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// TableComponent.js
import React from 'react';
import styles from './TableComponent.module.css';

Expand All @@ -14,12 +13,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
1 change: 1 addition & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ body {
color: #333;
font-size: 24px;
margin-bottom: 20px;
text-align: center;
}

.app {
Expand Down

0 comments on commit 02bdca2

Please sign in to comment.