43 lines
582 B
TypeScript
43 lines
582 B
TypeScript
|
|
import styled from 'styled-components';
|
|
|
|
|
|
export const TelemetriaView = styled.div`
|
|
display: flex;
|
|
padding-left: 11rem;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
background-color: #000;
|
|
height: 100vh;
|
|
width: 100%;
|
|
|
|
.container{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
|
|
background-image: linear-gradient(to right, #254F7F 10%, #888888 100%);
|
|
width: 60rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main{
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
width: 70%;
|
|
|
|
|
|
|
|
|
|
|
|
margin-top: 25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
`;
|