Added table css

This commit is contained in:
z0ccc 2021-06-23 20:24:44 -04:00
parent 4c69ed3560
commit 8df5a1ae6b
2 changed files with 15 additions and 10 deletions

View file

@ -153,7 +153,7 @@ const TableWrap = () => {
];
return (
<div className="frontRight">
<div className="tableWrap">
<Table title="Software" data={software} />
<Table title="Hardware" data={hardware} />
</div>

View file

@ -49,19 +49,24 @@ a:hover {
margin: 0 8px 0 0;
}
.title {
font-weight: 600;
font-size: 15px;
margin: 6px 0 0 0;
.tableWrap {
padding: 8px;
}
table {
width: 100%;
box-sizing: border-box;
padding: 0 8px;
border-spacing: 0 6px;
}
tr {
th {
font-weight: 600;
font-size: 15px;
text-align: left;
}
tr:hover {
color: var(--main);
cursor: pointer;
}
tr:hover {
@ -73,8 +78,8 @@ td {
vertical-align: top;
}
.column-one {
width: 130px;
td:first-child {
width: 150px;
}
::-webkit-scrollbar {