UNPKG

@ozo/react-rock

Version:

React 移动端开发脚手架,基于CRA3,通用、开箱即用。

27 lines (22 loc) 511 B
import React from 'react'; import styled from 'styled-components'; export const Page = styled.div` min-height: 100%; background-color: #f5f5f5; `; export const View = styled.div` background-color: #fff; margin-top: 10px; `; export const FlexView = styled.div` display: flex; flex-direction: column; padding: 10px 0; `; export const Title = styled.div` font-size: 16px; font-weight: bolder; line-height: 35px; padding-left: 20px; background-color: #ffe9da; `;