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>
|
||||
<div id="app" v-cloak>
|
||||
<div id="login" v-if="!is_authed">
|
||||
<div class="card center">
|
||||
<div class="center">
|
||||
<a :href="spotify_auth_url">
|
||||
<button id="spotify-login">Login With Spotify</button>
|
||||
</a>
|
||||
|
|
@ -72,11 +72,16 @@
|
|||
</div>
|
||||
<div class="body" v-if="data.artists.length > 0">
|
||||
<artist
|
||||
v-for="top_artist in data.artists"
|
||||
:artist="top_artist"
|
||||
:key="top_artist.id"
|
||||
v-for="top_artist in data.artists"
|
||||
:artist="top_artist"
|
||||
:key="top_artist.id"
|
||||
></artist>
|
||||
</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>
|
||||
</body>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue