github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/web/src/HeroScreen.tsx (about) 1 import styled from "styled-components" 2 import { FontSize } from "./style-helpers" 3 4 let HeroScreen = styled.section` 5 width: 100%; 6 height: 100vh; 7 display: flex; 8 align-items: center; 9 justify-content: center; 10 font-size: ${FontSize.large}; 11 ` 12 13 export default HeroScreen