Skip to content

Commit

Permalink
fix(footer): cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ariellalgilmore committed Nov 13, 2023
1 parent 6625117 commit c3048ea
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion packages/styles/scss/components/footer/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@

:host(#{$c4d-prefix}-legal-nav[size='micro']) {
::slotted(#{$c4d-prefix}-legal-nav-item),
::slotted(#{$c4d-prefix}-legal-nav-cookie-preferences-placeholder) div {
::slotted(#{$c4d-prefix}-legal-nav-cookie-preferences-placeholder) {
@include breakpoint(md) {
display: flex;
align-items: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ class C4DLegalNavCookiePreferencesPlaceholder extends StableSelectorMixin(
const linkNodes = (event.target as HTMLSlotElement)
.assignedNodes()
.filter((node) => (node as Element).tagName === 'A') as HTMLLinkElement[];
console.log('LINK?', linkNodes, this._hasCookies);
linkNodes.forEach((node) => {
// Adds Carbon CSS classes
node.classList.add(`${prefix}--link`);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,8 +288,6 @@ Vertical.story = {
},
};



export default {
title: 'Components/Link list',
parameters: {
Expand Down

0 comments on commit c3048ea

Please sign in to comment.