Skip to content

Commit

Permalink
feat : add organisms/profitTomorrow/style.js (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
JungYeonHwi committed Oct 23, 2023
1 parent ce9726b commit 96f615f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions components/organisms/profitTomorrow/style.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import styled from 'styled-components'

const WholeDiv = styled.div`
display: flex;
flex-direction: column;
margin : 5px;
gap : 3px;
`

const SemiDiv = styled.div`
display: flex;
flex-direction: row;
justify-content: space-around;
`

const Div = styled.div`
border-radius : 3px;
display: flex;
flex-direction: column;
border : 1px solid black;
width : 100px;
`

export {
WholeDiv,
SemiDiv,
Div,
}

0 comments on commit 96f615f

Please sign in to comment.