💄 fix some ui

This commit is contained in:
2021-04-04 16:05:41 +02:00
parent 5a14ffba13
commit 006ad63747
3 changed files with 18 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
<template>
<button class="button is-white go-back" @click="back">
<img src="@/assets/icons/left-arrow.svg" alt="back" />
<img src="@/assets/icons/dark-left-arrow.svg" alt="back" />
</button>
</template>

View File

@@ -13,12 +13,12 @@
>
</div>
<div class="column">
<section v-if="savedFavoriteRepos.length">
<p>
<router-link :to="{ name: 'RepoList' }" v-if="isLogged"
>Manage your repos</router-link
>
</p>
<section v-if="savedFavoriteRepos.length">
<ul>
<li
v-for="favoriteRepo in savedFavoriteRepos"

View File

@@ -57,7 +57,12 @@ body {
display: flex;
}
a.external-link {
a {
&:hover {
color: darken($link, 20);
}
&.external-link {
text-decoration: underline;
&::after {
@@ -65,4 +70,5 @@ a.external-link {
vertical-align: text-top;
content: url('assets/icons/external-link.svg');
}
}
}