diff --git a/src/pages/index.astro b/src/pages/index.astro index 0415d9c..ab8da64 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -7,9 +7,9 @@ import Card from '../components/Card/Card.astro'; import Dolares from '../components/Dolares.astro'; import Row from '../components/ExchangeTable/Row.astro'; import NavBar from '../components/Menu/NavBar'; +import '../components/SimularInvestment/globals.css'; import Banner from '../components/banner.astro'; import { EXCHANGES } from '../data/exchanges'; -import '../components/SimularInvestment/globals.css'; import Layout from '../layouts/Layout.astro'; import type { FullBankData, FullInvestmentData } from '../model/business'; import type { Return } from '../model/exchange'; @@ -137,7 +137,7 @@ for (const [exchange, values] of Object.entries(dataReturns)) { logo={EXCHANGES[item.exchange].logo} apy={item.apy} moneda={item.moneda} - className={` bg-white px-4 dark:border-gray-600 ${isLastItem ? 'rounded-b-lg' : 'border-b-1 border-b border-gray-100'} `} + className={` bg-white px-4 dark:border-gray-600 dark:bg-gray-900 ${isLastItem ? 'rounded-b-lg' : 'border-b-1 border-b border-gray-100'} `} isBestSection isLastItem={isLastItem} exchange={item.exchange}