Remove scoped and use specificity to fix font size.
This commit is contained in:
parent
02db8e965b
commit
b1f981f8f1
1 changed files with 20 additions and 13 deletions
|
|
@ -373,21 +373,28 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
.tpa-submit__title--line-height {
|
.tpa-submit {
|
||||||
line-height: map-get($spacers, 6);
|
#tpaSubmitOrderDetailsBody {
|
||||||
}
|
p {
|
||||||
|
font-size: .875rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.tpa-submit__title--line-height {
|
||||||
|
line-height: map-get($spacers, 6);
|
||||||
|
}
|
||||||
|
|
||||||
.text-color--darker-gray {
|
.text-color--darker-gray {
|
||||||
color: $darker-gray;
|
color: $darker-gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-color--black {
|
.text-color--black {
|
||||||
color: $black;
|
color: $black;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
color: $gray-350;
|
color: $gray-350;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue