diff --git a/.firebase/hosting.YnVpbGQ.cache b/.firebase/hosting.YnVpbGQ.cache index fe9d326..3c2ebff 100644 --- a/.firebase/hosting.YnVpbGQ.cache +++ b/.firebase/hosting.YnVpbGQ.cache @@ -1,4 +1,3 @@ -service-worker.js,1599243724293,60ad1128a91766033102a4a8d5510cc5cb0c9ba6df2bbbfa52006b72f0962662 asset-manifest.json,1599264567988,67d42dfbf94c68c48750a81ec73daaeb0130d6df329bad6afc222cbc0aedc648 favicon.ico,1599264562456,a08fa4488c3ecef62d9effd03b3a989929bdcbecf5e905941f9034a15bd3dba3 index.html,1599264567988,4b54157c0511c67cdb815147ce337acce9943c9f5490c625b9aa86284505c2b7 diff --git a/src/components/rameelo/landing/landing.js b/src/components/rameelo/landing/landing.js index d44993c..30f2a4d 100644 --- a/src/components/rameelo/landing/landing.js +++ b/src/components/rameelo/landing/landing.js @@ -9,7 +9,6 @@ import Slider from 'react-slick'; export default class Landing extends React.Component { render() { var sliderSettings = { - dots: true, infinite: true, speed: 300, slidesToShow: 4, @@ -156,23 +155,94 @@ export default class Landing extends React.Component { diff --git a/src/components/rameelo/landing/landing.scss b/src/components/rameelo/landing/landing.scss index 9ff68f5..b29f31c 100644 --- a/src/components/rameelo/landing/landing.scss +++ b/src/components/rameelo/landing/landing.scss @@ -197,7 +197,9 @@ } .carousel-container { - margin: 1em 0; + .slick-list { + padding: 2em 0 !important; + } .slick-arrow::before { color: black !important; @@ -222,21 +224,51 @@ padding: 1rem; - display: flex; + display: flex !important; flex-direction: row; .event-card-graphic { display: flex; - flex: 1; flex-direction: column; justify-content: flex-start; + + .date-graphic { + color: $white; + background-color: $red; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height: 35px; + width: 35px; + span { + font-size: 0.5em; + } + } } .event-card-info { - display: flex; + padding: 0em 0.5em; flex: 1; + display: flex; flex-direction: column; justify-content: space-between; + + .event-name { + font-size: 0.5em; + @extend %font-inter; + font-weight: 500; + } + + .event-location { + i { + margin-right: 5px; + } + + color: $secondary-text; + @extend %font-inter; + font-size: 0.4em; + } } } }