Feat/controllers - refactor entire backend and new admin interface #75

Merged
KevinMidboe merged 117 commits from feat/controllers into master 2021-02-19 00:19:52 +00:00
Showing only changes of commit d337329765 - Show all commits

View File

@@ -2,7 +2,7 @@
<main class="container">
<h1>Alle foreslåtte viner</h1>
<section class="requested-wines-container">
<section class="wines-container">
<p v-if="wines == undefined || wines.length == 0">Ingen har foreslått noe enda!</p>
<RequestedWineCard
@@ -65,10 +65,4 @@ h1 {
color: $matte-text-color;
font-weight: normal;
}
.requested-wines-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-gap: 2rem;
}
</style>