Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Clause): update styling so less space at top of clause #104

Merged
merged 1 commit into from
May 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions packages/cicero-ui/src/lib/components/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ClauseWrapper = styled.div`
border: 1px solid #19C6C7;
border-radius: 3px;
grid-template-columns: 10px 375px 1fr 25px 25px 25px 10px;
grid-template-rows: 11px 11px 1fr;
grid-template-rows: 0px 10px 1fr;
grid-template-areas: "one two three four five six seven"
"eight nine ten eleven twelve thirteen fourteen"
"fifteen sixteen seventeen eighteen nineteen twenty twentyone";
Expand Down Expand Up @@ -56,8 +56,7 @@ export const ClauseHeader = styled.div`
background: linear-gradient(180deg, #FFFFFF 0%, #F4F6FC 100%);
align-self: center;
justify-self: start;
margin-top: -16px;
margin-bottom: 6px;
margin-bottom: 9px;
padding: 3px;
color: #696969;
line-height: 14px;
Expand Down Expand Up @@ -101,7 +100,7 @@ const IconWrapper = styled.div`
background: linear-gradient(180deg, #FFF 0%, #F4F6FC 100%);
position: relative;
z-index: 1;
margin-top: -18px;
margin-bottom: 9px;
padding: 4px;
place-self: center;
transition-duration: 0.5s;
Expand Down