diff --git a/oidc-ui/src/components/OtpVerify.js b/oidc-ui/src/components/OtpVerify.js index e964b9223..b94108830 100644 --- a/oidc-ui/src/components/OtpVerify.js +++ b/oidc-ui/src/components/OtpVerify.js @@ -211,7 +211,20 @@ export default function OtpVerify({ setStatus({ state: states.ERROR, msg: "" }); } }; + + let styles = { + width: "40px", + height: "40px", + margin: "0 5px", + border: "", + borderBottom: "2px solid #0284c7", + color: "#0284c7" + }; + if(window.screen.availWidth <= 375) { + styles = {...styles, width: "2em"} + } + return ( <>