Skip to content

Commit

Permalink
Merge pull request #14 from Jr-YongFill/feature/community/#12
Browse files Browse the repository at this point in the history
Feature/community/#12
  • Loading branch information
github-actions[bot] authored Jul 23, 2024
2 parents ae8792c + 973229f commit 2bf439c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Header.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import { Link } from 'react-router-dom';
import styled from 'styled-components';
import palette from '../styles/pallete';

const HeaderContainer = styled.header`
top: 0;
Expand All @@ -10,7 +11,7 @@ const HeaderContainer = styled.header`
align-items: center;
padding: 0 30px;
z-index: 9;
background: #B6CCED;
background: ${palette.skyblue};
`;

const StyledLink = styled(Link)`
Expand Down
5 changes: 5 additions & 0 deletions src/styles/pallete.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const palette = {
skyblue: '#B6CCED',
blue:'#1C61C9',
};
export default palette;

0 comments on commit 2bf439c

Please sign in to comment.