fix styling

This commit is contained in:
PhilReact 2025-04-29 22:44:45 +03:00
parent 901d3774d0
commit f591d523e9
3 changed files with 6 additions and 1 deletions

View File

@ -2063,6 +2063,7 @@ function App() {
style={{ style={{
cursor: 'pointer', cursor: 'pointer',
height: '24px', height: '24px',
width: 'auto',
}} }}
onClick={returnToMain} onClick={returnToMain}
/> />
@ -2560,6 +2561,7 @@ function App() {
style={{ style={{
cursor: 'pointer', cursor: 'pointer',
height: '24px', height: '24px',
width: 'auto',
}} }}
onClick={() => { onClick={() => {
setRawWallet(null); setRawWallet(null);
@ -2593,6 +2595,7 @@ function App() {
style={{ style={{
cursor: 'pointer', cursor: 'pointer',
height: '24px', height: '24px',
width: 'auto',
}} }}
onClick={() => { onClick={() => {
setRawWallet(null); setRawWallet(null);
@ -2722,6 +2725,7 @@ function App() {
style={{ style={{
cursor: 'pointer', cursor: 'pointer',
height: '24px', height: '24px',
width: 'auto',
}} }}
onClick={() => { onClick={() => {
if (creationStep === 2) { if (creationStep === 2) {

View File

@ -8,9 +8,9 @@ export const Return: React.FC<SVGProps> = ({ color, opacity, ...children }) => {
return ( return (
<svg <svg
{...children}
width="20" width="20"
height="16" height="16"
{...children}
viewBox="0 0 20 16" viewBox="0 0 20 16"
fill="none" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"

View File

@ -121,6 +121,7 @@ export const DownloadWallet = ({
style={{ style={{
cursor: 'pointer', cursor: 'pointer',
height: '24px', height: '24px',
width: 'auto',
}} }}
onClick={returnToMain} onClick={returnToMain}
/> />