Skip to content

Commit 318758f

Browse files
committed
attempt #2
1 parent e7a2dbe commit 318758f

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

frontend/components/accounts/modals/verification.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const VerificationModal = (props: VerificationModalProps) => {
5959
const { show, closeFunc, type, contact, id, mutate } = props;
6060
const prettyType = type === ContactType.Email ? "Email" : "Phone Number";
6161
return (
62-
<Modal show={show} onClose={closeFunc}>
62+
<Modal show={show} onClose={closeFunc} className="verification-modal">
6363
<Modal.Card>
6464
<Modal.Card.Header onClose={closeFunc}>
6565
<Modal.Card.Title>

frontend/pages/_app.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import "bulma/css/bulma.min.css";
22
import "../styles/globals.css";
3+
import "../styles/Verification.module.css";
34

45
const MyApp = ({ Component, pageProps }) => {
56
return <Component {...pageProps} />;
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
.container {
1+
.verification-modal .container {
22
height: 50px;
33
width: 300px;
44
margin-top: 10px;
55
}
66

7-
.character {
7+
.verification-modal .character {
88
line-height: 50px;
99
font-size: 36px;
1010
color: black;
@@ -14,10 +14,10 @@
1414
margin-left: 8px;
1515
}
1616

17-
.character:first-child {
17+
.verification-modal .character:first-child {
1818
margin-left: 0;
1919
}
2020

21-
.character--selected {
21+
.verification-modal .character--selected {
2222
border: 1px solid #b0b0b0;
2323
}

frontend/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"next-env.d.ts",
2727
"**/*.ts",
2828
"**/*.tsx",
29-
"custom.d.ts"
29+
"**/*.css"
3030
]
3131
}

0 commit comments

Comments
 (0)