@@ -5,6 +5,7 @@ import { useNavigate, useSearchParams } from 'react-router-dom'
55import { useMedia } from 'react-use'
66import { Flex , Text } from 'rebass'
77import { usePoolsExplorerQuery } from 'services/zapEarn'
8+ import styled from 'styled-components'
89
910import { ReactComponent as IconUserEarnPosition } from 'assets/svg/earn/ic_user_earn_position.svg'
1011import { NotificationType } from 'components/Announcement/type'
@@ -42,6 +43,14 @@ export enum SortBy {
4243const POLLING_INTERVAL = 5 * 60_000
4344const DEBOUNCE_DELAY = 300
4445
46+ export const BaseWarningWrapper = styled . div `
47+ border-radius: 40px;
48+ padding: 6px 12px;
49+ background-color: ${ ( { theme } ) => theme . background } ;
50+ width: fit-content;
51+ margin: 0 auto;
52+ `
53+
4554const PoolExplorer = ( ) => {
4655 const [ search , setSearch ] = useState ( '' )
4756 const deboundedSearch = useDebounce ( search , DEBOUNCE_DELAY )
@@ -186,10 +195,12 @@ const PoolExplorer = () => {
186195
187196 < Filter filters = { filters } updateFilters = { updateFilters } search = { search } setSearch = { setSearch } />
188197 { filters . chainId === ChainId . BASE && (
189- < Text color = { theme . primary } fontSize = { 12 } fontStyle = { 'italic' } >
190- Kyber Earn data on Base is being updated. This may take a moment and will be available again at 1:00 AM UTC on
191- 20 Nov 2025 — thank you for your patience.
192- </ Text >
198+ < BaseWarningWrapper >
199+ < Text color = { theme . subText } fontSize = { 12 } fontWeight = { 500 } fontStyle = { 'italic' } >
200+ Kyber Earn data on Base is being updated. This may take a moment and will be available again at 1:00 AM UTC
201+ on 20 Nov 2025 — thank you for your patience.
202+ </ Text >
203+ </ BaseWarningWrapper >
193204 ) }
194205
195206 { upToLarge && (
0 commit comments