0
0
Fork 0

Styling updates

This commit is contained in:
Tyler-A 2020-08-05 20:52:37 -06:00
parent b76cb8070a
commit 62e4e8be29
4 changed files with 18 additions and 5 deletions

View file

@ -213,7 +213,7 @@ export default {
} }
#control > div { #control > div {
margin-bottom: 10px; margin: 5px 5px 10px 5px;
} }
#error { #error {

View file

@ -4,7 +4,7 @@
<a :href="spotify_auth_url"> <a :href="spotify_auth_url">
<button>Login With Spotify</button> <button>Login With Spotify</button>
</a> </a>
<p> {{ alert }} </p> <p class="alert"> {{ alert }} </p>
</div> </div>
</div> </div>
</template> </template>
@ -49,7 +49,7 @@ export default {
} }
</script> </script>
<style> <style scoped>
#login_screen { #login_screen {
font-family: var(--fonts); font-family: var(--fonts);
justify-content: center; justify-content: center;
@ -80,8 +80,20 @@ button {
} }
button:hover { cursor: pointer; } button:hover { cursor: pointer; }
p {
.alert {
margin-bottom: 0px; margin-bottom: 0px;
margin-top: 15px; margin-top: 15px;
} }
.error {
background-color: var(--error-background);
border-radius: var(--corner-rounding);
border-color: var(--error);
border-style: solid;
color: var(--error);
margin-bottom: 15px;
border-width: 2px;
}
</style> </style>

View file

@ -94,8 +94,8 @@ export default {
} }
.card { .card {
border-radius: var(--corner-rounding);
background-color: var(--card-colour); background-color: var(--card-colour);
border-radius: var(--border-radius);
color: var(--card-text); color: var(--card-text);
padding: 20px 10px 10px; padding: 20px 10px 10px;
flex-direction: column; flex-direction: column;

View file

@ -7,6 +7,7 @@
--accent2: #00aa00; --accent2: #00aa00;
--error: #ff0000; --error: #ff0000;
--error-background: #ff00005d;
--background: #23272A; --background: #23272A;
--background-text: var(--spotify-white); --background-text: var(--spotify-white);