mirror of
https://github.com/Spythere/spythere-portfolio.git
synced 2026-05-04 05:58:16 +00:00
styled components; navbar section
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import { styled } from 'styled-components';
|
||||
|
||||
export const StyledNavbar = styled.nav`
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
color: black;
|
||||
font-size: 1.2em;
|
||||
background-color: ${({ theme }) => theme.colors.primary};
|
||||
padding: 0.5em;
|
||||
`;
|
||||
|
||||
export const StyledNavlinkBrand = styled.div`
|
||||
color: black;
|
||||
opacity: 0.85;
|
||||
font-weight: 700;
|
||||
`;
|
||||
|
||||
export const StyledNavlinkList = styled.div`
|
||||
display: flex;
|
||||
gap: 0.5em;
|
||||
`;
|
||||
|
||||
export const StyledNavlink = styled.a`
|
||||
color: black;
|
||||
`;
|
||||
Reference in New Issue
Block a user