Merge branch 'bug/fix-h2' into 'master'

Remove $secondary background on h2 title, replace with underline

See merge request framasoft/mobilizon!242
This commit is contained in:
Thomas Citharel 2019-10-10 16:49:11 +02:00
commit c25f00c0a9
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>