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 {
margin-bottom: 10px;
margin: 5px 5px 10px 5px;
}
#error {

View file

@ -4,7 +4,7 @@
<a :href="spotify_auth_url">
<button>Login With Spotify</button>
</a>
<p> {{ alert }} </p>
<p class="alert"> {{ alert }} </p>
</div>
</div>
</template>
@ -49,7 +49,7 @@ export default {
}
</script>
<style>
<style scoped>
#login_screen {
font-family: var(--fonts);
justify-content: center;
@ -80,8 +80,20 @@ button {
}
button:hover { cursor: pointer; }
p {
.alert {
margin-bottom: 0px;
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>

View file

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