Normalize line height for headings

This commit is contained in:
Ramon Wenger 2019-07-31 14:03:39 +02:00
parent c9df7354fb
commit 4eea9c3a2c
4 changed files with 6 additions and 0 deletions

View File

@ -9,7 +9,10 @@
</script>
<style scoped lang="scss">
@import "@/styles/_variables.scss";
.section-title {
margin-bottom: 30px;
line-height: $default-heading-line-height;
}
</style>

View File

@ -13,5 +13,6 @@
.subtitle {
padding-top: 1px;
margin-bottom: $large-spacing;
line-height: $default-heading-line-height;
}
</style>

View File

@ -67,6 +67,7 @@
&__title {
font-size: toRem(35px);
margin-bottom: 40px;
line-height: $default-heading-line-height;
}
& /deep/ {

View File

@ -77,6 +77,7 @@ $font-weight-semibold: 600;
$font-weight-regular: 400;
$default-line-height: 1.5;
$default-heading-line-height: 1.2;
// popover
$popover-default-bottom: -110px;