From 526453796b3306930b702d7678feaf5420aa45ab Mon Sep 17 00:00:00 2001 From: Jake Dexheimer Date: Tue, 3 Oct 2017 22:32:24 -0700 Subject: [PATCH] Add transparent pixels to image --- components/Carbon.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/components/Carbon.js b/components/Carbon.js index 8c9c58c..3e057f2 100644 --- a/components/Carbon.js +++ b/components/Carbon.js @@ -173,6 +173,15 @@ class Carbon extends React.Component { justify-content: center; align-items: center; } + + #section::after { + content: ''; + position: absolute; + bottom: 0; + height: 1px; + width: 100%; + background: rgba(0, 0, 0, 0.01); + } `} )