Merge pull request #1117 from Safelite/CSR-1420-footer-copy-misalignment

CSR-1420 fix misalignment of disclaimer copy
This commit is contained in:
bmauger 2023-05-24 11:30:16 -04:00 committed by GitHub
commit fb095efa18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ export default {
name: "textBlock",
props: {
customText: String, // used to allow the insert of token values into textblock
justifyText: String, // left, right, center
justifyText: String, // right, center (left is default)
typeStyle: String, // h1-h6, body, small, label, caption (see Figma or Confluence documentation)
fontWeight: String, // bold=500, default is 400
cmsWidgetName: String,
@ -28,15 +28,11 @@ export default {
<style lang="scss" scoped>
.text-block {
display: flex;
&.left {
justify-content: flex-start;
}
&.right {
justify-content: flex-end;
text-align: right;
}
&.center {
justify-content: center;
text-align: center;
}
&.bold {
font-weight: 500;