Remove card class from the login view
This commit is contained in:
parent
0d2526812d
commit
e4a9c3bb42
1 changed files with 9 additions and 4 deletions
13
index.html
13
index.html
|
|
@ -26,7 +26,7 @@
|
||||||
<body>
|
<body>
|
||||||
<div id="app" v-cloak>
|
<div id="app" v-cloak>
|
||||||
<div id="login" v-if="!is_authed">
|
<div id="login" v-if="!is_authed">
|
||||||
<div class="card center">
|
<div class="center">
|
||||||
<a :href="spotify_auth_url">
|
<a :href="spotify_auth_url">
|
||||||
<button id="spotify-login">Login With Spotify</button>
|
<button id="spotify-login">Login With Spotify</button>
|
||||||
</a>
|
</a>
|
||||||
|
|
@ -72,11 +72,16 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="body" v-if="data.artists.length > 0">
|
<div class="body" v-if="data.artists.length > 0">
|
||||||
<artist
|
<artist
|
||||||
v-for="top_artist in data.artists"
|
v-for="top_artist in data.artists"
|
||||||
:artist="top_artist"
|
:artist="top_artist"
|
||||||
:key="top_artist.id"
|
:key="top_artist.id"
|
||||||
></artist>
|
></artist>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Modals Needed -->
|
||||||
|
<div v-if="show.modal.track" class="modal track-modal"></div>
|
||||||
|
<div v-if="show.modal.popularity" class="modal info-modal"></div>
|
||||||
|
<div v-if="show.modal.playlist_export" class="modal playlist-export-modal"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue