Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ui: enlarge text on wallet support notice for readability #90

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions frontend/src/components/modals/UnsupportedWalletsNoticeModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,33 @@ export const UnsupportedWalletsNoticeModal = ({
onClick={(e) => e.stopPropagation()}
style={{
backgroundColor: "rgb(18, 18, 18)",
padding: "30px",
padding: "50px",
borderRadius: "8px",
maxWidth: "400px",
maxWidth: "500px",
width: "90%",
position: "relative",
}}
>
<div
style={{
fontWeight: "bold",
marginBottom: "15px",
fontSize: "18px",
marginBottom: "35px",
fontSize: "26px",
color: "green",
lineHeight: "1.5",
}}
>
Wallet Support Notice
</div>
<div style={{ fontSize: "14px", color: "white", marginTop: "10px" }}>
<div
style={{
fontSize: "18px",
color: "white",
marginTop: "25px",
lineHeight: "2",
letterSpacing: "0.4px",
}}
>
Note: Gasless transactions are currently only supported for the Burner
wallet & Fuelet Wallet.
<br />
Expand All @@ -56,13 +65,14 @@ export const UnsupportedWalletsNoticeModal = ({
<button
onClick={onClose}
style={{
marginTop: "20px",
padding: "8px 16px",
marginTop: "40px",
padding: "14px 28px",
borderRadius: "4px",
border: "none",
backgroundColor: "#102a9e",
color: "#d0cdcd",
cursor: "pointer",
fontSize: "18px",
}}
>
Continue
Expand Down
Loading