12 lines
230 B
Plaintext
12 lines
230 B
Plaintext
const visuallyHidden = {
|
|
border: 0,
|
|
clip: 'rect(0 0 0 0)',
|
|
height: '1px',
|
|
margin: '-1px',
|
|
overflow: 'hidden',
|
|
padding: 0,
|
|
position: 'absolute',
|
|
whiteSpace: 'nowrap',
|
|
width: '1px'
|
|
};
|
|
export default visuallyHidden; |