mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 20:01:59 +00:00
14 lines
259 B
TypeScript
14 lines
259 B
TypeScript
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 };
|