54 lines
781 B
TypeScript
54 lines
781 B
TypeScript
|
|
import styled from 'styled-components';
|
|
|
|
|
|
export const TelemetriaView = styled.main`
|
|
padding: 20px ;
|
|
width: 100%;
|
|
|
|
.title{
|
|
color: black;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
}
|
|
|
|
span{
|
|
font-family: 'Inter';
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
color: #667085;
|
|
}
|
|
|
|
.titleMenuItem{
|
|
color: #667085;
|
|
font-family: Inter;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.paragraph{
|
|
color: #22d1f0;
|
|
text-align: center;
|
|
margin-top: 60px;
|
|
}
|
|
`;
|
|
|
|
export const Buttons = styled.div`
|
|
display: flex;
|
|
min-width: 14rem;
|
|
cursor: pointer;
|
|
margin-top: 5rem;
|
|
padding-left: 100px;
|
|
padding-right: 100px;
|
|
justify-content: space-evenly;
|
|
flex-direction: row;
|
|
height: 6rem;
|
|
`;
|
|
|
|
|
|
|
|
|
|
|