mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 12:04:21 +00:00
a58097eeaa
* Fix large images in onboarding in safari. * Fix shapeshift banner centering, adjusted spacing and logo. * Fix jagged rates. * Fix small password input on Firefox. * Remove top and bottom padding on form inputs that would cause cut off text. * Dont remove top and bottom padding on textareas. * Prevent flickering from rerender of promos.
16 lines
414 B
TypeScript
16 lines
414 B
TypeScript
import React from 'react';
|
|
import './ShapeshiftBanner.scss';
|
|
import shapeshiftSvg from 'assets/images/logo-shapeshift.svg';
|
|
|
|
export default () => (
|
|
<div className="ShapeshiftBanner">
|
|
<div className="ShapeshiftBanner-banner">
|
|
<p>
|
|
<b className="ShapeshiftBanner-banner-new">New Feature:</b>
|
|
Exchange coins & tokens with
|
|
</p>
|
|
<img src={shapeshiftSvg} />
|
|
</div>
|
|
</div>
|
|
);
|