Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/hungry-windows-jog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@hashicorp/design-system-components": patch
---

<!-- START components/app-footer -->
`AppFooter` - Updated company name in copyright text
<!-- END -->
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

<div class="hds-app-footer__copyright" ...attributes>
<Hds::Icon @name="hashicorp" />
<Hds::Text::Body @tag="span" @size="100">
<Hds::Text::Body @tag="span" @size="100" @align="center">
{{hds-t
"hds.components.app-footer.copyright.copyright-text"
default=(concat "© " this.year " HashiCorp")
default=(concat "© " this.year " HashiCorp, an IBM Company")
year=this.year
}}
</Hds::Text::Body>
Expand Down
3 changes: 3 additions & 0 deletions packages/components/src/styles/components/app-footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,12 @@ $hds-app-footer-icon-text-gap: 6px;
}

.hds-app-footer__copyright {
// Allow content to wrap and center in smaller viewports
display: flex;
flex-wrap: wrap;
gap: $hds-app-footer-icon-text-gap;
align-items: center;
justify-content: center;
color: var(--app-footer-copyright-text-color);

.hds-icon {
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
copyright-text: "© {year} HashiCorp"
copyright-text: "© {year} HashiCorp, an IBM Company"