From e2a8d1d565c03d06f6be79df7d0211ab338f7aaf Mon Sep 17 00:00:00 2001 From: j-bitmaker <51827834+j-bitmaker@users.noreply.github.com> Date: Tue, 24 Jan 2023 12:27:15 +0300 Subject: [PATCH] fix: mnemonic phrase popup on mobile (#868) --- components/pkview/index.css | 5 +++++ components/pkview/index.less | 12 ++++++++++++ 2 files changed, 17 insertions(+) diff --git a/components/pkview/index.css b/components/pkview/index.css index cead88e88a..c1dfbd82d1 100644 --- a/components/pkview/index.css +++ b/components/pkview/index.css @@ -167,3 +167,8 @@ margin: 0 auto; } } +@media only screen and (max-width: 480px) { + .wnd.pkviewwnd #pkview .mnemonicKey { + font-size: 5vw; + } +} diff --git a/components/pkview/index.less b/components/pkview/index.less index a84c1815a1..0e6e635aea 100644 --- a/components/pkview/index.less +++ b/components/pkview/index.less @@ -234,4 +234,16 @@ } } } +} + +@media only screen and (max-width: 480px) { + .wnd.pkviewwnd{ + + #pkview{ + + .mnemonicKey{ + font-size: 5vw; + } + } + } } \ No newline at end of file