More design-updates

This commit is contained in:
Kasper Rynning-Tønnesen
2020-01-22 17:16:02 +01:00
parent b64e17bbab
commit c177f1cda8
7 changed files with 149 additions and 61 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div v-if="wines.length > 0">
<h3>Viner</h3>
<h3>Topp viner</h3>
<ol>
<li v-for="wine in wines">
<span v-if="wine.vivinoLink == '' || wine.vivinoLink == null"
@@ -38,7 +38,7 @@ export default {
<style lang="scss" scoped>
h3 {
text-align: center;
text-align: left;
}
div {
margin: 15px 0 0 0;
@@ -51,4 +51,9 @@ a {
text-decoration: none;
color: orange;
}
ol {
padding-left: 1rem;
margin-left: 0;
}
</style>