device table header

This commit is contained in:
LilleBRG 2025-03-25 16:20:08 +01:00
parent a3f3d8f861
commit 8f6f332292
3 changed files with 32 additions and 0 deletions

View File

@ -23,6 +23,9 @@
</span>
</div>
</div>
<div class="addDeviceContainer">
<button class="addDevice">Add Device</button>
</div>
<table>
<tr>
<th>Id</th>

View File

@ -0,0 +1,28 @@
table {
margin: 20px;
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td,
th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
.addDeviceContainer{
margin-top: 20px;
display: flex;
justify-content: flex-end;
}
.addDevice{
width: 120px;
margin: 0 20px 0 0;
}

View File

@ -8,6 +8,7 @@ body {
}
table {
margin: 20px;
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;