update Telemetry

This commit is contained in:
Alex Santos 2022-05-18 11:10:00 -03:00
parent ec82b83a16
commit 978fdb60cf
3 changed files with 7 additions and 6 deletions

View File

@ -8,7 +8,7 @@ export const GradientButtonView = styled.button`
flex-direction: column; flex-direction: column;
border-radius: 2px; border-radius: 2px;
width: 25%; width: 30%;
height: 110px; height: 110px;
margin-bottom: 25px; margin-bottom: 25px;

View File

@ -200,7 +200,7 @@ export default function region() {
<input type="date" data-date="" data-date-format="DD MMMM YYYY" value="2015-08-09"/> <input type="date" data-date="" data-date-format="DD MMMM YYYY" value="2015-08-09"/>
<BasicButton title='Download (csv)' /> <BasicButton title='Download (csv)' />
</section> </section>
<LineBarChart data1={EvolucaoPld.data} data2={EvolucaoPld.data1} data3={[]} label={EvolucaoPld.label} title='evolução pld' subtitle='' /> <LineBarChart data1={EvolucaoPld.data} data2={EvolucaoPld.data1} data3={[]} label={EvolucaoPld.label} title='Evolução PLD (R$/MWh)' subtitle='' />
</PldGraphView> </PldGraphView>
</RenderIf> </RenderIf>

View File

@ -31,17 +31,18 @@ export const TelemetriaView = styled.main`
.paragraph{ .paragraph{
color: #22d1f0; color: #22d1f0;
text-align: center; text-align: center;
margin-top: 20px; margin-top: 60px;
} }
`; `;
export const Buttons = styled.div` export const Buttons = styled.div`
display: flex; display: flex;
min-width: 10rem; min-width: 14rem;
cursor: pointer; cursor: pointer;
margin-top: 5rem; margin-top: 5rem;
padding: 1px 60px; padding-left: 100px;
justify-content: space-around; padding-right: 100px;
justify-content: space-evenly;
flex-direction: row; flex-direction: row;
height: 6rem; height: 6rem;
`; `;