Remove $secondary background on h2 title, replace with underline

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2019-10-10 15:42:27 +02:00
parent f16bfcdcd4
commit d66a027abb
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
2 changed files with 6 additions and 3 deletions

View File

@ -214,7 +214,7 @@ export default class MyEvents extends Vue {
& > h2 {
display: block;
color: $primary;
font-size: 3rem;
font-size: 2.5rem;
text-decoration: underline;
text-decoration-color: $secondary;
}

View File

@ -149,7 +149,7 @@ export default class Register extends Vue {
}
</script>
<style lang="scss">
<style lang="scss" scoped>
@import "../../variables";
.avatar-enter-active {
@ -170,7 +170,10 @@ export default class Register extends Vue {
}
h2.title {
background: $secondary;
color: $primary;
font-size: 2.5rem;
text-decoration: underline;
text-decoration-color: $secondary;
display: inline;
}
</style>