Created
December 10, 2019 01:17
-
-
Save treyhuffine/5ed90a922f250a35d1734fd0a6797246 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled from 'styled-components' | |
import { white } from '@carbon/colors' | |
export const ProjectItem = styled.li` | |
margin-top: 1rem; | |
padding-bottom: 1rem; | |
border-bottom: 1px solid ${white}; | |
` | |
export const ProjectTitle = styled.h4` | |
font-weight: bold; | |
` | |
export const SkillContainer = styled.div` | |
margin-top: 1.2rem; | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment