@include namespace('footer') { @include store(( --colors: ( --fg: prop(--colors --obj, $global: true), --ground: prop(--colors --obj, $global: true), ) )); @include component(namespace()) { position: sticky; top: 100vh; overflow: hidden; color: prop(--colors --fg); font-family: $font-fam--mono; line-height: 1.4; &::after { content: str-repeat('░', 400); display: block; margin-top: 2px; padding-top: 2px; overflow: hidden; border-top: 1px solid prop(--colors --ground); color: prop(--colors --ground); } @include element('ascii') { display: inline-block; position: relative; left: 50%; overflow: visible; transform: translateX(-50%); } @media print { display: none; } } }