Skip to content

Commit

Permalink
Merge pull request #206 from ferminrp/develop
Browse files Browse the repository at this point in the history
small fix dark mode
  • Loading branch information
ferminrp authored Apr 3, 2024
2 parents ca860ad + b0db014 commit c030fc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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}
Expand Down

0 comments on commit c030fc0

Please sign in to comment.