diff --git a/src/components/Home/QuickSurahs/index.js b/src/components/Home/QuickSurahs/index.js index b7d79ba35..a23a30c80 100644 --- a/src/components/Home/QuickSurahs/index.js +++ b/src/components/Home/QuickSurahs/index.js @@ -2,18 +2,20 @@ import React from 'react'; import debug from '../../../helpers/debug'; import Link from 'react-router/lib/Link'; +const styles = require('containers/Home/style.scss'); + export default () => { debug('component:Index', 'QuickSurahs'); const isFriday = new Date().getDay() === 5; return ( - - - ); + + + ); }; diff --git a/src/containers/Home/index.js b/src/containers/Home/index.js index 285276ccf..1b0832c97 100644 --- a/src/containers/Home/index.js +++ b/src/containers/Home/index.js @@ -22,9 +22,9 @@ function Home(props) {
+

SURAHS (CHAPTERS) -

diff --git a/src/containers/Home/style.scss b/src/containers/Home/style.scss index 11e28f9c8..e1fd35f7b 100644 --- a/src/containers/Home/style.scss +++ b/src/containers/Home/style.scss @@ -1,13 +1,30 @@ @import '../../styles/variables.scss'; -.list{ - .title{ - padding: 50px 0px; +.list { + .title { + padding: 20px 0; font-size: 14px; - margin: 0px; - - @media(max-width: $screen-xs-max) { - padding: 10px 0; + margin-top: 20px; + + span { + margin: 0; + line-height: 2; + a { + padding: 0 15px; + } + &:after { + content: '|'; + } + &:first-child, &:last-child { + &:after { + content: none; + } + } + } + + &:last-child { + margin-top: 25px; + border-bottom: solid 2px rgba(0,0,0,.05) } } }