@shoelace-style/shoelace
Version:
A forward-thinking library of web components.
20 lines (18 loc) • 502 B
JavaScript
// src/components/visually-hidden/visually-hidden.styles.ts
import { css } from "lit";
var visually_hidden_styles_default = css`
:host(:not(:focus-within)) {
position: absolute ;
width: 1px ;
height: 1px ;
clip: rect(0 0 0 0) ;
clip-path: inset(50%) ;
border: none ;
overflow: hidden ;
white-space: nowrap ;
padding: 0 ;
}
`;
export {
visually_hidden_styles_default
};