Kiran-pro2001 / hackathon2024IITBhuRoundGrandFinale

TwitchIn - TwitchIn is a business and employment-focused social media platform that works through for the purpose to connect similar kind of peers.
https://kiran-pro2001.github.io/hackathon2024IITBhuRoundGrandFinale/
Other
5 stars 8 forks source link

Enhancement: UI Issues in Application #38

Open driyash9881 opened 3 weeks ago

driyash9881 commented 3 weeks ago

UI Issues in Application

Problem Description

1. Inconsistent Button Styling

Description:

The button in the application lacks consistency with the overall UI design. The current button design appears flat and does not align with the application's rounded UI elements.

Visual Reference:

Button Design Issue

Suggested Fix:

2. Insufficient Padding in Section

Description:

The padding around the content in the section is insufficient, causing the content to appear cramped.

Visual Reference:

Padding Issue

Suggested Fix:

Solution

CSS Adjustments

  1. Button Styling:

    • Add the following CSS to round the button and provide margin:

      .button-class {
      border-radius: 10px; /* Adjust the radius to match the desired roundness */
      margin-top: 20px; /* Add appropriate margin */
      }
  2. Padding Adjustment:

    • Modify the CSS to increase padding around the content:

      .content-section {
      padding: 20px; /* Adjust padding value as needed */
      }

These changes will help the application's UI to appear more cohesive and improve overall user experience.


Please review the proposed solution and adjust the values according to the application's design standards.