Use styles from global.scss.

This commit is contained in:
2021-02-19 00:29:25 +01:00
parent 83d9b30048
commit d337329765

View File

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