Add tests on top of ui/buttons, ui/links and ui/inputs (#342)

This commit is contained in:
Charles Bochet
2023-06-21 03:47:00 +02:00
committed by GitHub
parent e2eb40c1ea
commit e2d8c3a2ec
14 changed files with 284 additions and 61 deletions

View File

@ -2,12 +2,14 @@ import styled from '@emotion/styled';
const StyledLayout = styled.div`
background: ${(props) => props.theme.primaryBackground};
border: 1px solid ${(props) => props.theme.lightBorder};
border-radius: 5px;
box-shadow: 0px 0px 2px;
display: flex;
display: flex;
flex-direction: row;
height: fit-content;
min-width: 300px;
padding: 20px;
width: fit-content;
`;