diff --git a/apps/cowswap-frontend/src/modules/trade/pure/PriceUpdatedBanner/index.tsx b/apps/cowswap-frontend/src/modules/trade/pure/PriceUpdatedBanner/index.tsx index 81448f4f5f..a3285bb3f2 100644 --- a/apps/cowswap-frontend/src/modules/trade/pure/PriceUpdatedBanner/index.tsx +++ b/apps/cowswap-frontend/src/modules/trade/pure/PriceUpdatedBanner/index.tsx @@ -4,7 +4,6 @@ import { InlineBanner } from '@cowprotocol/ui' import { Trans } from '@lingui/macro' import styled from 'styled-components/macro' - const Wrapper = styled.div` display: flex; align-items: center; @@ -15,8 +14,11 @@ const Wrapper = styled.div` ` const StyledBanner = styled(InlineBanner)` + width: 100%; + > span { flex-flow: row nowrap; + width: 100%; } `