fix(CaptchaModal): improve captcha visibility by fixing margin

This commit is contained in:
plebeius.eth
2023-09-22 12:32:25 +02:00
parent 51b50c1cfa
commit a312c64bb0
@@ -1,4 +1,4 @@
import styled from "styled-components"; import styled from 'styled-components';
import Modal from 'react-modal'; import Modal from 'react-modal';
export const StyledModal = styled(Modal)` export const StyledModal = styled(Modal)`
@@ -56,11 +56,10 @@ export const StyledModal = styled(Modal)`
#captcha-container { #captcha-container {
position: relative; position: relative;
clear: both;
width: 302px; width: 302px;
height: 100px; height: 100px;
overflow: hidden; overflow: hidden;
margin-bottom: 3px; margin-bottom: 17px;
} }
#response { #response {
@@ -77,7 +76,6 @@ export const StyledModal = styled(Modal)`
img { img {
height: 100%; height: 100%;
width: 100%; width: 100%;
margin-top: 2px;
position: relative; position: relative;
display: block; display: block;
} }