19 lines
290 B
TypeScript
19 lines
290 B
TypeScript
import styled from "styled-components";
|
|
|
|
export const AccumulatedSavingsView = styled.main`
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
section {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
canvas {
|
|
margin: 160px 0 0 0;
|
|
}
|
|
}
|
|
`
|