mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-04 03:52:40 +00:00
Add styling to LockTable
This commit is contained in:
@@ -153,7 +153,7 @@ const LockTable = createClass({
|
|||||||
{this.state.result[this.props.resultName] &&
|
{this.state.result[this.props.resultName] &&
|
||||||
<>
|
<>
|
||||||
<p>Total Reviews Waiting: {this.state.result[this.props.resultName].length}</p>
|
<p>Total Reviews Waiting: {this.state.result[this.props.resultName].length}</p>
|
||||||
<table>
|
<table className='lockTable'>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
{this.props.propertyNames.map((name, idx)=>{
|
{this.props.propertyNames.map((name, idx)=>{
|
||||||
|
|||||||
@@ -10,4 +10,16 @@
|
|||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.lockTable{
|
||||||
|
td{
|
||||||
|
border: 1px solid #333333;
|
||||||
|
padding: 4px 10px;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user