Files
excel-download/simple_sns/front-end/src/assets/theme-dark/components/dialog/dialogContent.js
2022-10-15 23:34:16 +09:00

45 lines
1.3 KiB
JavaScript

/**
=========================================================
* Material Dashboard 2 React - v2.1.0
=========================================================
* Product Page: https://www.creative-tim.com/product/material-dashboard-react
* Copyright 2022 Creative Tim (https://www.creative-tim.com)
Coded by www.creative-tim.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
// Material Dashboard 2 React base styles
import typography from 'assets/theme-dark/base/typography';
import borders from 'assets/theme-dark/base/borders';
import colors from 'assets/theme-dark/base/colors';
// Material Dashboard 2 React helper functions
import pxToRem from 'assets/theme-dark/functions/pxToRem';
import rgba from 'assets/theme-dark/functions/rgba';
const { size } = typography;
const { white } = colors;
const { borderWidth, borderColor } = borders;
const dialogContent = {
styleOverrides: {
root: {
padding: pxToRem(16),
fontSize: size.md,
color: rgba(white.main, 0.8),
},
dividers: {
borderTop: `${borderWidth[1]} solid ${rgba(borderColor, 0.6)}`,
borderBottom: `${borderWidth[1]} solid ${rgba(borderColor, 0.6)}`,
},
},
};
export default dialogContent;