1
resposta

como remover a barra de rolagem

body { font-family: "Inter", sans-serif; background-color: var(--light-blue-100); }

.container { height: 100vh; max-height: 100vh; display: flex; width: 100%; max-width: 1130px; margin: 0 auto; padding: 0 30px; }

.esquerda { width: 60%; height: 100%; padding-top: 40px; }

.logo-alura { height: 48px; margin-right: 100px; }

form { padding-top: 60px; padding-left: 110px; display: flex; justify-content: space-between; flex-direction: column; height: calc(100% - 148px); }

form textarea { width: 100%; border: none; font-family: "Inter"; outline: none; color: var(--dark-blue-300); font-weight: 400; font-size: 24px; line-height: 150%; background-color: transparent; }

form textarea::placeholder { color: var(--dark-blue-300); }

button { width: 328px; height: 67px; background-color: transparent; text-align: center; box-shadow: none; border: 1px solid var(--dark-blue-300); border-radius: 24px; padding: 24px; font-family: 'Inter'; font-size: 16px; line-height: 19px; outline: none; }

.alerta { font-family: 'Inter'; font-size: 12px; color: var(--gray-400); opacity: 0.8; margin: 0 0 16px 8px; }

.alerta img { margin-bottom: -4px; }

.botoes { display: flex; gap: 20px; }

button.bt-cripto { background-color: var(--dark-blue-300); color: #FFFFFF; }

button.bt-descripto { background-color: #D8DFE8; color: var(--dark-blue-300); }

button.bt-copiar { width: 100%; margin-top: 30px; background-color: #D8DFE8; color: var(--dark-blue-300); }

.direita { width: 40%; height: 680px; text-align: center; background: #FFFFFF; box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.521); border-radius: 32px; margin: 40px 40px 40px 100px; padding: 25px; }

.texto-criptografado p { overflow: auto; }

.sem-retorno img { margin: 150px 32px 0 32px; }

.titulo-sem-retorno { font-family: 'Inter'; font-weight: 700; font-size: 24px; line-height: 120%; text-align: center; color: var(--gray-500); margin: 32px 32px 32px 16px; }

.sem-retorno p { font-family: 'Inter'; font-style: normal; font-weight: 400; font-size: 16px; line-height: 150%; color: var(--gray-400); }

.texto-criptografado { height: 100%; display: flex; flex-direction: column; justify-content: space-between; }

.texto-criptografado p { font-family: 'Inter'; font-style: normal; font-weight: 600; font-size: 20px; line-height: 150%; text-align: left; color: var(--gray-400); }

.d-none { display: none; pointer-events: none; }

footer { text-align: center; color: #0A3871; padding: 40px 0; display: block; height: auto; }

.logo-link { height: 70px; margin: 15px 5px 20px 5px; }

.logo-link:hover { transform: scale(1.2); transition-duration: 0.5s; }

1 resposta

Dentro da seção onde você quer tirar o scroll, você pode utilizar o overflow:hidden e dependendo se quiser tirar de um eixo especifico pode usar como overflow-x:hidden ou overflow-y:hidden... por exemplo:

/body { overflow-x:hidden }/