Skip to content

Commit bfb9607

Browse files
author
Ritika Mishra
committed
updated height of candle for all screen size
1 parent e7cfa5d commit bfb9607

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

src/components/CandleLit.tsx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,15 @@ const BrightCandleView: React.FC<BrightCandleViewProps> = ({ fftData = [], betaP
4444

4545
return (
4646
<div className="w-full h-full flex items-end justify-center min-h-0 min-w-0">
47-
<div className={`relative ${
48-
isFullPage
49-
? 'w-1/4 h-3/5 sm:w-1/5 sm:h-3/5 md:w-1/5 md:h-3/5 lg:w-1/5 lg:h-2/3 xl:w-1/6 xl:h-2/3 2xl:w-1/6 2xl:h-2/3'
47+
<div className={`relative ${isFullPage
48+
? 'w-1/4 h-3/4 sm:w-1/4 sm:h-3/4 md:w-1/4 md:h-3/4 lg:w-1/4 lg:h-3/4 xl:w-1/4 xl:h-3/4 2xl:w-1/4 2xl:h-3/4'
5049
: 'w-1/4 h-4/5 sm:w-1/5 sm:h-4/5 md:w-1/6 md:h-5/6 lg:w-1/6 lg:h-5/6 xl:w-1/6 xl:h-5/6'
5150
}`}
5251
>
5352
{/* Container wrapper with relative positioning */}
5453
<div className="relative w-full h-full flex flex-col">
5554
{/* Flame should take up approximately 60% of the total height */}
56-
<div style={{ height: '60%' }} className="relative w-full">
55+
<div style={{ height: '80%' }} className="relative w-full">
5756
<svg
5857
xmlns="http://www.w3.org/2000/svg"
5958
viewBox="0 0 200 300"
@@ -94,13 +93,12 @@ const BrightCandleView: React.FC<BrightCandleViewProps> = ({ fftData = [], betaP
9493
/>
9594
</svg>
9695
</div>
97-
96+
9897
{/* Candle should take up approximately 40% of the total height */}
9998
<div style={{ height: '80%' }} className="w-full bg-gradient-to-b from-gray-100 to-gray-200 dark:from-stone-600 dark:to-stone-700 rounded-t-md backdrop-blur-md shadow-xl relative">
10099
<div className="absolute inset-0 overflow-hidden rounded-t-md bg-gradient-to-b from-cyan-300 via-blue-400 to-gray-900">
101-
<div className={`absolute inset-0 ${
102-
isFullPage
103-
? 'flex flex-row justify-center items-center'
100+
<div className={`absolute inset-0 ${isFullPage
101+
? 'flex flex-row justify-center items-center'
104102
: 'flex items-center justify-center'
105103
}`}
106104
>

0 commit comments

Comments
 (0)