From 7e2b1b809f8e68b3f2788b729deb3c7434ea16d4 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Tue, 18 Aug 2020 20:08:22 -0600 Subject: [PATCH] Adjust styling and move alert text to HTML rather than JS --- src/components/LoginView.vue | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/components/LoginView.vue b/src/components/LoginView.vue index 4189d77..3ba8d19 100644 --- a/src/components/LoginView.vue +++ b/src/components/LoginView.vue @@ -3,14 +3,18 @@
{{ error }}
-

{{ alert }}

+

+ This website will be able to see your top artists and tracks, + and make both public and private playlists on your behalf. This + is all done in your web browser. +

@@ -19,7 +23,6 @@ export default { name: 'LoginView', data() { return { - alert: `We will only be able to access your top tracks and artists, nothing else. This is also only done on your browser. Our servers do not see any of the data from your account.`, auth_base: `https://accounts.spotify.com/authorize`, use_state: true, client_id: `3a1795e9d55445b0aa0c05dd74c866fb`, @@ -92,8 +95,8 @@ button:hover { cursor: pointer; } .alert { - margin-bottom: 0px; - margin-top: 15px; + margin-bottom: 10px; + padding: 5px; } @@ -103,7 +106,6 @@ button:hover { cursor: pointer; } border-color: var(--error); color: var(--error-text); border-style: solid; - margin-bottom: 15px; border-width: 2px; }