Skip to content

Commit 0a8d3f2

Browse files
committed
tailwind v3 classes to v4 classes
1 parent 5d953d8 commit 0a8d3f2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

components/Presentation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,15 @@ const Presentation: React.FC<Props> = ({ slides, sourceLink }) => {
115115
{isControlVisible && (
116116
<>
117117
<button
118-
className="rounded-full bg-gray-300 p-3 text-gray-800 outline-none hover:bg-gray-400 focus:bg-gray-400 active:scale-95"
118+
className="rounded-full bg-gray-300 p-3 text-gray-800 outline-hidden hover:bg-gray-400 focus:bg-gray-400 active:scale-95"
119119
onClick={() => {
120120
prevSlide()
121121
}}
122122
>
123123
<ChevronLeft size={15} />
124124
</button>
125125
<button
126-
className="rounded-full bg-gray-300 p-3 text-gray-800 outline-none hover:bg-gray-400 focus:bg-gray-400 active:scale-95"
126+
className="rounded-full bg-gray-300 p-3 text-gray-800 outline-hidden hover:bg-gray-400 focus:bg-gray-400 active:scale-95"
127127
onClick={() => {
128128
nextSlide()
129129
}}

0 commit comments

Comments
 (0)