BLOG-27 Add the different size shadows of the home page terminal #31
@ -38,7 +38,7 @@ export default function Terminal() {
|
|||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
ref={element}
|
ref={element}
|
||||||
className={`bg-true-gray-700 border-true-gray-800 flex w-full flex-col gap-y-1.5 rounded-2xl border-4 p-4 pb-28 font-mono font-medium text-gray-50 shadow-xl transition-opacity duration-300 md:gap-y-2.5 md:rounded-3xl md:border-8 md:p-8 md:pb-32 md:text-xl ${isReady ? "opacity-100" : "opacity-0"}`}
|
className={`bg-true-gray-700 border-true-gray-800 flex w-full flex-col gap-y-1.5 rounded-2xl border-4 p-4 pb-28 font-mono font-medium text-gray-50 shadow-lg md:shadow-xl transition-opacity duration-300 md:gap-y-2.5 md:rounded-3xl md:border-8 md:p-8 md:pb-32 md:text-xl ${isReady ? "opacity-100" : "opacity-0"}`}
|
||||||
squid marked this conversation as resolved
Outdated
|
|||||||
>
|
>
|
||||||
{lines.slice(0, currentIndex).map((line, index) => (
|
{lines.slice(0, currentIndex).map((line, index) => (
|
||||||
<NormalLine key={index} text={line} />
|
<NormalLine key={index} text={line} />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user
Does it have different shadow size on different platforms?
Addressed in
7e1f4ea942