From c6a0a9fec16f5250ad380d795d7747b913ee2443 Mon Sep 17 00:00:00 2001 From: gsalunke Date: Thu, 14 Apr 2022 18:38:40 +0530 Subject: [PATCH 1/2] added github login modal on index --- app/static/css/base.css | 8 +++++++- app/templates/index.html | 25 +++++++++++++++++++++++++ requirements.txt | 4 ++-- 3 files changed, 34 insertions(+), 3 deletions(-) diff --git a/app/static/css/base.css b/app/static/css/base.css index fce7bad..c47da28 100644 --- a/app/static/css/base.css +++ b/app/static/css/base.css @@ -491,13 +491,14 @@ header > div.menu .menu-item:last-child{ /* actionables */ .cta{ - padding: 8px 16px; + padding: 12px 16px; border-radius: 8px; font-size: 16px; line-height: 16px; font-weight: 700; display: inline-block; cursor: pointer; + border: none; } .cta-primary{ @@ -572,4 +573,9 @@ header > div.menu .menu-item:last-child{ } .hidden{ display: none; +} + +.github-filled .iconify{ + font-size: 24px !important; + vertical-align: middle; } \ No newline at end of file diff --git a/app/templates/index.html b/app/templates/index.html index f1c809e..1c2b0b2 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -1,4 +1,29 @@ {% extends 'base.html' %} {% block content %} Go to login page + + + + + {% endblock %} \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 13db929..70f5cbe 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ # asgiref==3.5.0 # via django -backports-zoneinfo==0.2.1 +# backports-zoneinfo==0.2.1 # via django certifi==2021.10.8 # via @@ -36,7 +36,7 @@ gunicorn==20.1.0 # via -r requirements.in idna==3.3 # via requests -psycopg2==2.9.3 +# psycopg2==2.9.3 # via -r requirements.in pycparser==2.21 # via cffi From 2b1ed29a5ace005af80bed436cac293f3eb81075 Mon Sep 17 00:00:00 2001 From: gsalunke Date: Thu, 14 Apr 2022 18:53:55 +0530 Subject: [PATCH 2/2] added minor changes --- app/static/css/base.css | 3 +++ app/templates/index.html | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/app/static/css/base.css b/app/static/css/base.css index c47da28..d7f8c5a 100644 --- a/app/static/css/base.css +++ b/app/static/css/base.css @@ -561,6 +561,9 @@ header > div.menu .menu-item:last-child{ .lh16{ line-height: 16px !important; } +.pb45{ + padding-bottom: 45px !important; +} .text-to-bottom{ display: inline-block; border-bottom: 1px solid #966220; diff --git a/app/templates/index.html b/app/templates/index.html index 1c2b0b2..f0cbe53 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -7,11 +7,11 @@