UNPKG

@procraft/widget-order

Version:

Order widget for landing

60 lines (49 loc) 888 B
import styled from 'styled-components' import { StarsStyled } from '../../Stars/styles' export const ReviewHeaderStyled = styled.div` display: flex; align-items: center; margin-bottom: 5px; .separator { flex: 1; } .name { color: #1d3247; font-size: 16px; font-weight: 700; margin-right: 10px; } .date { color: #8398ac; font-weight: 500; font-size: 14px; } ${StarsStyled} { svg { width: 18px; height: 18px; } } ` export const ReviewTextStyled = styled.div` color: #1d3247; font-weight: 500; font-size: 14px; .meetExpectation { margin-top: 5px; color: #8398ac; font-weight: 500; font-size: 14px; } .reply { margin-top: 10px; } .replyTitle { color: #8398ac; font-weight: 500; font-size: 14px; } ` export const ReviewStyled = styled.div` margin: 30px 0; `