芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/@buffetjs/styles/src/components/Card/index.js
/** * * Card * */ import styled from 'styled-components'; import sizes from '../../assets/styles/sizes'; import colors from '../../assets/styles/colors'; const Card = styled.div` background: white; font-family: 'Lato'; box-shadow: 0 2px 4px ${colors.lightGrey}; position: relative; .table-wrapper { width: 100%; overflow-x: scroll; } @media (min-width: ${sizes.tablet}) { .table-wrapper { width: 100%; overflow-x: inherit; } } `; export default Card;