From b40b57600f9e5ed89da926d61a4dada933cc6279 Mon Sep 17 00:00:00 2001 From: Hemant <133942800+hk2166@users.noreply.github.com> Date: Tue, 24 Feb 2026 16:58:54 +0530 Subject: [PATCH 1/2] style: improve navbar spacing and reduce search bar width MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Increase spacing between nav dropdown menus (space-x-2 → space-x-4) - Increase spacing between nav sections (space-x-3 → space-x-6) - Increase spacing between utility icons (space-x-2 → space-x-4) - Reduce search bar width from 250px to 180px - Simplify search placeholder to Search... These changes reduce visual congestion in the navigation bar while maintaining all existing functionality and menu items. --- .env.sample | 47 ----------------------------------------- web/templates/base.html | 18 ++++++++-------- 2 files changed, 9 insertions(+), 56 deletions(-) delete mode 100644 .env.sample diff --git a/.env.sample b/.env.sample deleted file mode 100644 index 275d11499..000000000 --- a/.env.sample +++ /dev/null @@ -1,47 +0,0 @@ -DEBUG=False -ENVIRONMENT=development -SECRET_KEY=your-secret-key-here -DATABASE_URL=sqlite:///db.sqlite3 -EMAIL_FROM=admin@example.com -SENDGRID_API_KEY=your-sendgrid-api-key -SENDGRID_PASSWORD=your-sendgrid-password -SLACK_WEBHOOK_URL=your-slack-webhook-url -MESSAGE_ENCRYPTION_KEY=5ezrkqK2lhifqBRt9f8_dZhFQF_f5ipSQDV8Vzv9Dek= -# Generate a key by running: python web/master_key.py - -# Stripe Configuration -STRIPE_PUBLISHABLE_KEY=your-stripe-publishable-key -STRIPE_SECRET_KEY=your-stripe-secret-key -STRIPE_WEBHOOK_SECRET=your-stripe-webhook-secret -DJANGO_DEBUG=True - -# Admin Configuration -ADMIN_URL=a-dmin-url123 - -# Google Cloud Storage Configuration -GS_BUCKET_NAME=your-bucket-name -GS_PROJECT_ID=your-project-id -SERVICE_ACCOUNT_FILE=your-service-account-file-path - -#Twitter Configuration -TWITTER_API_KEY=your_api_key_here -TWITTER_API_SECRET_KEY=your_api_secret_here -TWITTER_ACCESS_TOKEN=your_access_token_here -TWITTER_ACCESS_TOKEN_SECRET=your_access_token_secret_here - -#Deployment Configuration -APP_PORT=8000 -DOMAIN_NAME=yourdomain.com -ENABLE_HTTPS_REDIRECT=True -PROJECT_NAME=education-website -PYTHON_VERSION=3.11 -VPS_IP=your-vps-ip -VPS_PASSWORD=your-vps-password -VPS_USER=root -DB_NAME=education_website -DB_USER=root -DB_PASSWORD=your_secure_database_password -GIT_REPO=your_git_repo_to_deploy -GIT_BRANCH=your_repo_branch -ALLOWED_HOSTS=example.com,www.example.com,127.0.0.1,localhost -CSRF_TRUSTED_ORIGINS=http://domain.com diff --git a/web/templates/base.html b/web/templates/base.html index d869af45a..34ec49ce9 100644 --- a/web/templates/base.html +++ b/web/templates/base.html @@ -170,9 +170,9 @@ -