Skip to content

Commit a202682

Browse files
author
Saulo Benigno
committed
ajustes visuais
1 parent 93fb20a commit a202682

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.idea/workspace.xml

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/Table.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default class Table extends React.Component {
8989
<table>
9090
<thead>
9191
<tr>
92-
<th>#</th>
92+
<th className="index">#</th>
9393
<th>social media</th>
9494
<th>symbol</th>
9595
<th>date</th>
@@ -101,7 +101,7 @@ export default class Table extends React.Component {
101101
<tbody>
102102
{dates.slice(number1,number2).map((date,i) => (
103103
<tr key={i}>
104-
<td>{i+1}</td>
104+
<td className="index">{i+1}</td>
105105
<td>
106106
{social_media}
107107
</td>

src/index.css

+4
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,8 @@ table td {
8787

8888
select {
8989
margin: 10px;
90+
}
91+
92+
.index {
93+
color: darkgray;
9094
}

0 commit comments

Comments
 (0)