joseCorte-exe 72694a2504 correcoes
2022-06-30 23:36:34 -03:00

45 lines
662 B
TypeScript

import styled from "styled-components";
export const HeaderView = styled.header`
display: flex;
justify-content: space-between;
width: 100%;
margin-bottom: 40px;
.icon {
display: flex;
align-items: center;
justify-content: flex-start;
height: 40px;
border-radius: 8px;
background-color: #254F7F;
padding: 14px;
margin-right: 20px;
p{
color: white;
white-space: nowrap;
}
}
section {
display: flex;
align-items: center;
justify-content: center;
:first-child {
align-items: flex-start;
justify-content: flex-start;
flex-direction: column;
}
}
`