feat: add ciontact table

This commit is contained in:
2025-12-14 20:41:46 -03:00
parent f74d15713c
commit 74ba14c3de
4 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
:host {
overflow: auto;
}
div:first-of-type {
margin-top: 1rem;
}
.contact-list {
width: 100%;
border-collapse: collapse;
& thead {
background-color: var(--primary);
color: white;
text-transform: uppercase;
& th {
padding: 1rem 0;
}
}
& tbody td {
padding: .5rem;
&:nth-child(4) {
text-align: center;
}
}
}