From ab7c800cd42cb00bc3ac93443659cf2e699b8549 Mon Sep 17 00:00:00 2001 From: igoradamenko Date: Sun, 18 Mar 2018 23:12:21 +0200 Subject: [PATCH] add support for columns in auth-panel --- .../components/auth-panel/__column/auth-panel__column.scss | 5 +++++ web/app/components/auth-panel/auth-panel.scss | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 web/app/components/auth-panel/__column/auth-panel__column.scss diff --git a/web/app/components/auth-panel/__column/auth-panel__column.scss b/web/app/components/auth-panel/__column/auth-panel__column.scss new file mode 100644 index 00000000..ef121b47 --- /dev/null +++ b/web/app/components/auth-panel/__column/auth-panel__column.scss @@ -0,0 +1,5 @@ +.auth-panel__column { + &:nth-child(2) { + margin-left: 8px; + } +} diff --git a/web/app/components/auth-panel/auth-panel.scss b/web/app/components/auth-panel/auth-panel.scss index 0625ab0e..3667131a 100644 --- a/web/app/components/auth-panel/auth-panel.scss +++ b/web/app/components/auth-panel/auth-panel.scss @@ -1,4 +1,6 @@ .auth-panel { + display: flex; + justify-content: space-between; font-size: 12px; line-height: 16px; }