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.
		
		
		
		
		
			
		
			
				
					
					
						
							37 lines
						
					
					
						
							692 B
						
					
					
				
			
		
		
	
	
							37 lines
						
					
					
						
							692 B
						
					
					
				// @flow
 | 
						|
import type { Styles } from '../types/style'
 | 
						|
 | 
						|
/**
 | 
						|
 * CSS to hide text to show a background image in a SEO-friendly way.
 | 
						|
 *
 | 
						|
 * @example
 | 
						|
 * // Styles as object usage
 | 
						|
 * const styles = {
 | 
						|
 *   'backgroundImage': 'url(logo.png)',
 | 
						|
 *   ...hideText(),
 | 
						|
 * }
 | 
						|
 *
 | 
						|
 * // styled-components usage
 | 
						|
 * const div = styled.div`
 | 
						|
 *   backgroundImage: url(logo.png);
 | 
						|
 *   ${hideText()};
 | 
						|
 * `
 | 
						|
 *
 | 
						|
 * // CSS as JS Output
 | 
						|
 *
 | 
						|
 * 'div': {
 | 
						|
 *   'backgroundImage': 'url(logo.png)',
 | 
						|
 *   'textIndent': '101%',
 | 
						|
 *   'overflow': 'hidden',
 | 
						|
 *   'whiteSpace': 'nowrap',
 | 
						|
 * }
 | 
						|
 */
 | 
						|
 | 
						|
export default function hideText(): Styles {
 | 
						|
  return {
 | 
						|
    textIndent: '101%',
 | 
						|
    overflow: 'hidden',
 | 
						|
    whiteSpace: 'nowrap',
 | 
						|
  }
 | 
						|
}
 |