@include namespace('ascii') { @include store(( --colors: ( --fg: prop(--colors --fg-hi, $global: true), --border: prop(--colors --fg-hi, $global: true), ) )); @include component(namespace()) { padding-left: 0; overflow: hidden; border-left: 0; color: prop(--colors --fg); font-size: 1rem; &::after { content: str-repeat('░', 120); display: block; margin-top: 1 / 16 * 2em; padding-top: 1 / 16 * 2em; border-top: 1px solid prop(--colors --border); color: prop(--colors --fg); } } }