Change a class

This commit is contained in:
Le Libre Au Quotidien 2020-05-31 18:35:17 +02:00
parent f615857d02
commit 1a5582d90f
2 changed files with 6 additions and 3 deletions

View File

@ -7,7 +7,7 @@
font-style: normal;
}
/* BUTTONS CLASS */
a,.button{
.button{
border:none;
background-color:#0483d8;
padding:20px;
@ -16,7 +16,7 @@ a,.button{
min-width:100px;
text-align:center;
}
a:hover,.button:hover{
.button:hover{
border:#0483d8 solid 1px;
transition:0.4s;
background-color:white;
@ -24,7 +24,10 @@ a:hover,.button:hover{
text-decoration: none;
text-align:center;
}
.simple{
text-decoration: none;
}
.buttons::after{
content:"Aller";
}

View File

@ -2,7 +2,7 @@
<div id="choicebox">
<div class="adisplay">
<a v-for="value in myList" :key="value" :href="value.url">{{ value.btn }} </a>
<a class="button" v-for="value in myList" :key="value" :href="value.url">{{ value.btn }} </a>
</div>
</div>