0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-26 16:02:38 +00:00

Add styling to LockTable

This commit is contained in:
G.Ambatte
2024-06-08 16:48:16 +12:00
parent 240342007b
commit 634b099ade
2 changed files with 13 additions and 1 deletions

View File

@@ -153,7 +153,7 @@ const LockTable = createClass({
{this.state.result[this.props.resultName] &&
<>
<p>Total Reviews Waiting: {this.state.result[this.props.resultName].length}</p>
<table>
<table className='lockTable'>
<thead>
<tr>
{this.props.propertyNames.map((name, idx)=>{

View File

@@ -10,4 +10,16 @@
margin-left: 10px;
}
}
.lockTable{
td{
border: 1px solid #333333;
padding: 4px 10px;
text-align: center;
&:hover {
cursor: pointer;
}
}
}
}