feat: add credit cards endpoint

This commit is contained in:
Matilda Landström
2024-06-18 15:48:50 +02:00
parent 9931d9edef
commit fa5638aaed
6 changed files with 79 additions and 2 deletions

View File

@@ -1,5 +1,18 @@
.container {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
}
}
.card {
margin-top: 2rem;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, auto);
gap: 0.5rem;
}
.subTitle {
grid-column: span 2;
}