From e6feecebfd97f485380e7ee9f7bef8fd79d7ed95 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Wed, 10 Jan 2024 08:46:44 +0200 Subject: [PATCH] feat: add style and media query for rec mechanism --- .../ValidatorOnboarding/KeyGeneration/index.module.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/index.module.css b/src/pages/ValidatorOnboarding/KeyGeneration/index.module.css index e305bf86..133700a8 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/index.module.css +++ b/src/pages/ValidatorOnboarding/KeyGeneration/index.module.css @@ -6,3 +6,13 @@ margin-top: 40px; } +.recovery-mechanism-container > div { + flex: 1; + width: 30%; +} + +@media (max-width: 630px) { + .recovery-mechanism-container > div { + min-width: 40%; + } +}