0
0
Fork 0

Remove card class from the login view

This commit is contained in:
Tyler-A 2020-07-06 23:49:02 -06:00
parent 0d2526812d
commit e4a9c3bb42

View file

@ -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>
@ -77,6 +77,11 @@
: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>