mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
fix(board stats): table warning, margin
This commit is contained in:
@@ -1,14 +1,14 @@
|
|||||||
.content hr {
|
.content hr {
|
||||||
min-width: 468px;
|
min-width: 468px;
|
||||||
margin-left: -4px;
|
margin-left: -4px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blotter {
|
.blotter {
|
||||||
min-width: 468px;
|
min-width: 468px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
margin-top: -2px;
|
margin-top: -1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blotter tr {
|
.blotter tr {
|
||||||
|
|||||||
@@ -24,7 +24,13 @@ const BoardStats = ({ address, createdAt }: BoardStatsProps) => {
|
|||||||
return (
|
return (
|
||||||
<div className={styles.content}>
|
<div className={styles.content}>
|
||||||
<table className={styles.blotter}>
|
<table className={styles.blotter}>
|
||||||
<hr />
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<hr />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
{showStats && (
|
{showStats && (
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user