You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
364 B
16 lines
364 B
// https://allyjs.io/tutorials/hiding-elements.html
|
|
// Element is visually hidden but is readable by screen readers
|
|
const visuallyHidden: any = {
|
|
position: 'absolute',
|
|
width: '1px',
|
|
height: '1px',
|
|
margin: '-1px',
|
|
border: '0',
|
|
padding: '0',
|
|
overflow: 'hidden',
|
|
clip: 'rect(0 0 0 0)',
|
|
'clip-path': 'inset(100%)',
|
|
};
|
|
|
|
export default visuallyHidden;
|