@include namespace('ascii') { @include store(( --colors: ( --fg: prop(--colors --fg-hi, $global: true), --border: prop(--colors --fg-hi, $global: true), ) )); @include component(namespace()) { overflow: hidden; color: prop(--colors --fg); font-family: $font-fam--mono; line-height: 1.4; &::after { content: str-repeat('░', 400); display: block; margin-top: 1 / 16 * 2em; padding-top: 1 / 16 * 2em; border-top: 1px solid prop(--colors --border); color: prop(--colors --fg); } @include element('fixed-content') { display: inline-block; position: relative; left: 50%; overflow: visible; transform: translateX(-50%); } } }