Skip to content
Snippets Groups Projects
Commit 2d5a41a7 authored by Kamile Liucija Vainiute's avatar Kamile Liucija Vainiute
Browse files

lint fixes

parent d90b1e59
No related branches found
No related tags found
No related merge requests found
Pipeline #710 passed
......@@ -30,7 +30,7 @@ const Modules = (props: ModulesProps): JSX.Element => {
useEffect(() => {
fetchAllPlaylists()
}, [])
}, [fetchAllPlaylists])
useEffect(() => {
if (navbarRef?.current !== null) {
......
export { default } from './Speaker'
......@@ -50,6 +50,7 @@ const Speakers = (props: {
<img
className='object-cover h-full rounded-3xl'
src={speaker.fullImage}
alt={speaker.name}
/>
<div className='absolute bottom-0 my-3 text-center'>
<h1 className='font-bold text-3xl'>{speaker.name}</h1>
......@@ -92,7 +93,7 @@ const Speakers = (props: {
.map((speaker, index) => (
<div
key={`small-${speaker.name.toLowerCase()}-${index}`}
className='p-5 bg-black bg-opacity-20 flex items-center shadow-lg rounded-xl'
className='p-5 bg-black-dark bg-opacity-50 flex items-center shadow-xl rounded-xl'
>
<img
src={speaker.roundImage}
......
......@@ -27,7 +27,8 @@ module.exports = {
gray: '#2D2D2D',
pink: '#E8486C',
violet: '#785FA6',
babyBlue: '#ACB4DC'
babyBlue: '#ACB4DC',
'black-dark': '#1C1C1C'
},
},
fontFamily: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment