Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

115
Visualizações
React JS Button not displaying on iphones

I made a website on reactjs but the problem is that it is working fine on all devices except iphones,at the landing page, the begin button is not displaying on iphones.

It is working fine when I check it on browser responsive mode, but when I open it on an iphone the begin button is not displaying, I am still able to click on it but it is not displaying, I can see a mild button shadow and that's all

Link to the website : www.unifiedtechno.com

enter image description here

Landing.js


import React from 'react';
import logo from './logo.png';

import {Link} from 'react-router-dom';

import './Landing.css';

function Landing()
{
    return (
        <>

        <div id="logo">
            <img src={logo} alt="logo"/>
        </div>
        <div >
            <Link id="begin" to ="/Home"><button id="button">Begin</button></Link>
        </div>

        </>
    );
}


export default Landing; 

Landind.css


@keyframes transitionHome {

    from{opacity: 0;}
    to{opacity:1};
    
}

#logo{
    width:100vw;
    display:flex;
    justify-content: center;
    margin-top:20vh;
    animation-name: transitionHome;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

#logo img{
    width:30vh;
    height:30vh;
    transform: scale(0.5);

    animation-name:spinScale;
    animation-duration: 1s;
    animation-fill-mode: backwards;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}

#begin {
    width:100vw;
    display:flex;
    flex-direction:row;
    justify-content: center;
    margin-top:10vh;
    animation-name: transitionHome;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

#begin  #button{
    color:rgb(0, 82, 85);
    position:absolute;
    background-color: #3db5b5da !important;
    font-size: 2.5vh;
    font-weight: 400;
    padding:1vh;
    width:15vh;
    border-radius: 25px;
    border:none;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    box-shadow: 3px 3px 3px 5px rgba(0, 0, 0, 0.082);
    animation-name: transitionHome;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    -webkit-appearance: none;
}

#begin  #button:hover{
    cursor:pointer;
    background-color: rgba(25, 167, 155);
    color:rgb(255, 255, 255);
    animation-name: transitionHome;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}



@keyframes spinScale {

    from{
        transform: scale(0.8) rotate(0deg);
    }

    to{
        transform: scale(1) rotate(360deg);
    }
    
}


about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

Your #begin has flex-direction: row which could be set to column + other flex tweaks for mobile.

#begin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 2rem;
    align-items: center;
    }
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda