Skip to content

Commit

Permalink
Update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbcapps committed Aug 9, 2022
1 parent 02c0ad7 commit 987787b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/NewsCarousel/NewsCarousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,16 @@ const NewsCarousel = ({ articles }: { articles: ArticleListItemRecord[] }) => {
return (
<div
style={{
bottom: '-30px',
bottom: '-40px',
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
paddingLeft: '8rem',
paddingRight: '8rem',
}}>
<div className={styles.carouselArrow}>
<FontAwesomeIcon
size="lg"
icon="angle-left"
onClick={() => {
if (sliderRef.current) {
Expand All @@ -60,6 +64,7 @@ const NewsCarousel = ({ articles }: { articles: ArticleListItemRecord[] }) => {
</ul>
<div className={styles.carouselArrow}>
<FontAwesomeIcon
size="lg"
icon="angle-right"
onClick={() => {
if (sliderRef.current) {
Expand Down

0 comments on commit 987787b

Please sign in to comment.