feat: create project list (#671)

This commit is contained in:
Carlos Valente
2024-01-06 21:38:16 +01:00
committed by GitHub
parent 65a5aaa665
commit bac2dc6b87
15 changed files with 220 additions and 34 deletions
@@ -10,7 +10,11 @@
.subheader {
font-size: 1.25rem;
padding-bottom: 0.25rem;
font-weight: 600;
display: flex;
align-items: center;
justify-content: space-between;
}
.section {
@@ -35,3 +39,29 @@
display: block;
color: $error-red;
}
.table {
width: 100%;
border-collapse: collapse;
font-size: calc(1rem - 2px);
text-align: left;
tr {
padding: 1rem 0;
}
th {
border-bottom: 1px solid $white-10;
font-weight: 400;
color: $gray-400;
}
th,
td {
padding: 0.5rem;
}
tr:nth-child(even) {
background-color: $white-1;
}
}