💄 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> <template>
<button class="button is-white go-back" @click="back"> <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> </button>
</template> </template>

View File

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

View File

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