changing pld table color
This commit is contained in:
parent
d792f468da
commit
9d4f8ff6d2
@ -11,7 +11,7 @@ interface ChartCardInterface {
|
|||||||
children?: React.ReactNode
|
children?: React.ReactNode
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function ChartCard({ title, subtitle, consumption, className, children }: ChartCardInterface) {
|
export default function GraphCard({ title, subtitle, consumption, className, children }: ChartCardInterface) {
|
||||||
return (
|
return (
|
||||||
<ChartCardView className={className} >
|
<ChartCardView className={className} >
|
||||||
<div className='content' >
|
<div className='content' >
|
||||||
|
|||||||
@ -3,10 +3,6 @@ import styled from "styled-components"
|
|||||||
export const GrossAnualChartView = styled.div`
|
export const GrossAnualChartView = styled.div`
|
||||||
width: 90%;
|
width: 90%;
|
||||||
|
|
||||||
div{
|
|
||||||
/* margin-top: 10px; */
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 900px) {
|
@media (max-width: 900px) {
|
||||||
min-width: 20rem
|
min-width: 20rem
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,48 +0,0 @@
|
|||||||
import Box from '@mui/material/Box';
|
|
||||||
import FilledInput from '@mui/material/FilledInput';
|
|
||||||
import FormControl from '@mui/material/FormControl';
|
|
||||||
import FormHelperText from '@mui/material/FormHelperText';
|
|
||||||
import IconButton from '@mui/material/IconButton';
|
|
||||||
import Input from '@mui/material/Input';
|
|
||||||
import InputAdornment from '@mui/material/InputAdornment';
|
|
||||||
import InputLabel from '@mui/material/InputLabel';
|
|
||||||
import OutlinedInput from '@mui/material/OutlinedInput';
|
|
||||||
import TextField from '@mui/material/TextField';
|
|
||||||
import Image from 'next/image'
|
|
||||||
import React from 'react'
|
|
||||||
|
|
||||||
import BasicButton from '../components/buttons/basicButton/BasicButton'
|
|
||||||
import GradientButton from '../components/buttons/gradientButton/GradientButton'
|
|
||||||
import Graph from '../components/graph/Chart'
|
|
||||||
import LineChart from '../components/graph/LineChart'
|
|
||||||
|
|
||||||
// import Footer from '../components/footer/footer'
|
|
||||||
|
|
||||||
export default function areaTest() {
|
|
||||||
const [values, setValues] = React.useState({
|
|
||||||
amount: '',
|
|
||||||
password: '',
|
|
||||||
weight: '',
|
|
||||||
weightRange: '',
|
|
||||||
showPassword: false,
|
|
||||||
});
|
|
||||||
const handleChange =
|
|
||||||
(prop) => (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
||||||
setValues({ ...values, [prop]: event.target.value });
|
|
||||||
};
|
|
||||||
const handleClickShowPassword = () => {
|
|
||||||
setValues({
|
|
||||||
...values,
|
|
||||||
showPassword: !values.showPassword,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
const handleMouseDownPassword = (event: React.MouseEvent<HTMLButtonElement>) => {
|
|
||||||
event.preventDefault();
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{/* <Footer /> */}
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@ -71,7 +71,6 @@ export default function pld({tableData, userName, clientMonth}: pldInterface) {
|
|||||||
|
|
||||||
const handleChangeDate = (newValue: Date | null) => {
|
const handleChangeDate = (newValue: Date | null) => {
|
||||||
setDate(newValue)
|
setDate(newValue)
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
function getDataByDay() {
|
function getDataByDay() {
|
||||||
|
|||||||
@ -9,7 +9,7 @@ export const PldTableMinMaxView = styled.div`
|
|||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
|
|
||||||
background-color: #EFEFEF;
|
background-color: #FFFFFF;
|
||||||
|
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
|
|
||||||
@ -218,7 +218,7 @@ export const PldTableView = styled.div<{display?: boolean}>`
|
|||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
|
|
||||||
background-color: #EFEFEF;
|
background-color: #FFFFFF;
|
||||||
|
|
||||||
margin-top: 38px;
|
margin-top: 38px;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user