Refactor code, fix UI and logic code

This commit is contained in:
2023-11-02 11:51:26 +07:00
parent 4e7e731fbd
commit 895e96216d
37 changed files with 330 additions and 202 deletions
@@ -0,0 +1,13 @@
import styled from 'styled-components';
const StyledHeader = styled.header`
border-bottom: 1px solid var(--border-color);
padding: 20px 40px;
display: flex;
justify-content: flex-end;
align-items: center;
gap: 30px;
`;
export { StyledHeader };