💄 (welcome page) fix get started button
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="welcome-world">
|
<div class="welcome-world">
|
||||||
<div class="columns">
|
<div class="columns is-vcentered">
|
||||||
<div class="column">
|
<div class="column get-started">
|
||||||
<h3 class="title is-3">Lite Note</h3>
|
<h3 class="title is-3">Lite Note</h3>
|
||||||
<router-link
|
<router-link
|
||||||
:to="{
|
:to="{
|
||||||
@@ -9,19 +9,16 @@
|
|||||||
params: { user: 'lite-note', repo: 'getting-started' }
|
params: { user: 'lite-note', repo: 'getting-started' }
|
||||||
}"
|
}"
|
||||||
class="button is-primary"
|
class="button is-primary"
|
||||||
>getting started guide</router-link
|
>Get started</router-link
|
||||||
>.
|
>
|
||||||
</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">
|
|
||||||
<h4 class="subtitle is-4">
|
|
||||||
⭐
|
|
||||||
</h4>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li
|
<li
|
||||||
v-for="favoriteRepo in savedFavoriteRepos"
|
v-for="favoriteRepo in savedFavoriteRepos"
|
||||||
@@ -134,6 +131,11 @@ export default defineComponent({
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
|
.get-started {
|
||||||
|
margin: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
h3,
|
h3,
|
||||||
h4 {
|
h4 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|||||||
Reference in New Issue
Block a user