Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed #3318 Figma: Refactor CSS files in src/components/OrganizationCard #3384

Conversation

gurramkarthiknetha
Copy link
Contributor

@gurramkarthiknetha gurramkarthiknetha commented Jan 22, 2025

What kind of change does this PR introduce?

UI/UX improvement, refactoring of CSS for better accessibility and maintainability.

Issue Number:

Fixes #3318

Snapshots/Videos:

If relevant, did you update the documentation?

N/A - This PR does not introduce new functionality requiring updates to Talawa-Docs.

Summary

This PR addresses the issue by:

  • Refactoring and consolidating all CSS into the global file src/style/app.module.css.
  • Deleting CSS files in subdirectories and ensuring all styles are referenced from the global file.
  • Enhancing the UI/UX to be more color-blind friendly.

Does this PR introduce a breaking change?

No, this PR does not introduce breaking changes. It only refactors styles and updates UI components for consistency and accessibility.

Checklist

UI/UX Improvements

  • Adhered to the guidelines for making the application color-blind friendly.
  • Refactored CSS to streamline into a single global file: src/style/app.module.css.
  • Deleted all CSS files in subdirectories and related components.
  • Removed all HTML color codes except in src/style/app.module.css.
  • Used descriptive CSS variable names for colors (e.g., --search-button-bg instead of --light-blue).
  • Standardized button, dropdown, and search box behavior:
    • Buttons and dropdowns only have shadows on hover.
    • Shadows for search boxes are visible only when selected.
  • Ensured consistency with pre-existing CSS and referenced relevant design patterns (e.g., modal design standards).

CodeRabbit AI Review

  • Reviewed and addressed all critical issues flagged by CodeRabbit AI.
  • Implemented or justified each non-critical suggestion.
  • Documented reasoning in PR comments where CodeRabbit AI suggestions were not implemented.

Test Coverage

  • Written tests for all new changes/features.
  • Verified that test coverage meets or exceeds 95%.
  • Ran the test suite locally, ensuring all tests pass.

Additional Information

  • This PR consolidates styles from various components into src/style/app.module.css, removing redundancy and improving maintainability.
  • Any deviations from the guidelines were aligned with decisions made in PRs Chore/css changes #2466 and Updating to NEW COLOR SCHEME #2984 to ensure consistency.
  • Testing included validating all UI interactions to confirm that shadows, color schemes, and hover effects behave as expected.

Have you read the contributing guide?

Yes

Summary by CodeRabbit

  • Style Changes
    • Relocated styling for organization card from a dedicated module to the main application style module.
    • Introduced new CSS classes for image alignment, text color, layout, and decorative elements.
    • Improved variable naming for better clarity and consistency.
    • Removed outdated CSS classes from the organization card module.

Copy link
Contributor

coderabbitai bot commented Jan 22, 2025

Walkthrough

This pull request focuses on refactoring CSS files for the OrganizationCard component by removing the local CSS module and migrating its styles to the global src/style/app.module.css file. The changes involve deleting the OrganizationCard.module.css file, transferring its existing CSS classes to the global stylesheet, and updating the import statement in the OrganizationCard.tsx component to reference the new global CSS file.

Changes

File Change Summary
src/components/OrganizationCard/OrganizationCard.module.css Deleted entire CSS module file
src/components/OrganizationCard/OrganizationCard.tsx Updated CSS import from local module to global app.module.css
src/style/app.module.css Added new CSS classes: .alignimg, .box, .first_box, .second_box, .second_box > h4, .second_box > h5, and .deco; renamed several CSS variables for clarity

Assessment against linked issues

Objective Addressed Explanation
Streamline CSS into single global file [#3318]
Delete CSS files in component subdirectory [#3318]
Use descriptive variable names for colors [#3318]
Remove HTML color codes except in global CSS [#3318]

Possibly related issues

Possibly related PRs

Suggested reviewers

  • palisadoes

Poem

🐰 CSS dancing, files rearranging,
Global styles, no more estranging!
One stylesheet to rule them all,
Rabbit's magic makes components tall!
Refactoring with a hoppy glee,
Talawa's design now set free! 🎨


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

Our Pull Request Approval Process

Thanks for contributing!

Testing Your Code

Remember, your PRs won't be reviewed until these criteria are met:

  1. We don't merge PRs with poor code quality.
    1. Follow coding best practices such that CodeRabbit.ai approves your PR.
  2. We don't merge PRs with failed tests.
    1. When tests fail, click on the Details link to learn more.
    2. Write sufficient tests for your changes (CodeCov Patch Test). Your testing level must be better than the target threshold of the repository
    3. Tests may fail if you edit sensitive files. Ask to add the ignore-sensitive-files-pr label if the edits are necessary.
  3. We cannot merge PRs with conflicting files. These must be fixed.

Our policies make our code better.

Reviewers

Do not assign reviewers. Our Queue Monitors will review your PR and assign them.
When your PR has been assigned reviewers contact them to get your code reviewed and approved via:

  1. comments in this PR or
  2. our slack channel

Reviewing Your Code

Your reviewer(s) will have the following roles:

  1. arbitrators of future discussions with other contributors about the validity of your changes
  2. point of contact for evaluating the validity of your work
  3. person who verifies matching issues by others that should be closed.
  4. person who gives general guidance in fixing your tests

CONTRIBUTING.md

Read our CONTRIBUTING.md file. Most importantly:

  1. PRs with issues not assigned to you will be closed by the reviewer
  2. Fix the first comment in the PR so that each issue listed automatically closes

Other

  1. 🎯 Please be considerate of our volunteers' time. Contacting the person who assigned the reviewers is not advised unless they ask for your input. Do not @ the person who did the assignment otherwise.
  2. Read the CONTRIBUTING.md file make

Copy link

codecov bot commented Jan 22, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 89.69%. Comparing base (f9fdea1) to head (665853e).

Additional details and impacted files
@@                  Coverage Diff                  @@
##           develop-postgres    #3384       +/-   ##
=====================================================
+ Coverage              7.93%   89.69%   +81.76%     
=====================================================
  Files                   312      335       +23     
  Lines                  8129     8638      +509     
  Branches               1815     1921      +106     
=====================================================
+ Hits                    645     7748     +7103     
+ Misses                 7417      631     -6786     
- Partials                 67      259      +192     
Flag Coverage Δ
combined 89.69% <ø> (?)
jest 7.93% <ø> (?)
vitest 89.69% <ø> (?)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between f9fdea1 and 122e139.

📒 Files selected for processing (3)
  • src/components/OrganizationCard/OrganizationCard.module.css (0 hunks)
  • src/components/OrganizationCard/OrganizationCard.tsx (1 hunks)
  • src/style/app.module.css (1 hunks)
💤 Files with no reviewable changes (1)
  • src/components/OrganizationCard/OrganizationCard.module.css
✅ Files skipped from review due to trivial changes (1)
  • src/components/OrganizationCard/OrganizationCard.tsx
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Test Application
🔇 Additional comments (3)
src/style/app.module.css (3)

Line range hint 1-150: Well-organized CSS variables with clear documentation!

The CSS variables are logically grouped, well-documented, and follow a consistent naming convention. The methodology section provides clear guidelines for contributors.


Line range hint 6500-7000: Well-implemented responsive design with proper breakpoints!

The media queries are well-organized, use consistent breakpoint variables, and include appropriate fallbacks for cross-browser compatibility.


Line range hint 4000-4500: Good accessibility implementation with proper focus states and ARIA support!

The styles properly handle keyboard navigation, focus states, and ARIA attributes, ensuring good accessibility.

src/style/app.module.css Outdated Show resolved Hide resolved
coderabbitai[bot]
coderabbitai bot previously approved these changes Jan 22, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (3)
src/style/app.module.css (3)

7254-7261: Improve responsiveness and background blending for .alignimg.

Consider these improvements:

  1. Use relative units for better responsiveness
  2. Add background properties for the blend mode to take effect
.alignimg {
  border-radius: 50%;
+  background-color: var(--white-color);
  background-blend-mode: darken;
-  height: 65px;
-  width: 65px;
+  height: clamp(50px, 4vw, 65px);
+  width: clamp(50px, 4vw, 65px);
+  object-fit: cover;
}

7262-7269: Fix redundant hover state and selector syntax.

The hover state is redundant and the selector has an extra space.

.box {
  color: var(--light-orange);
}

-.box :hover {
-  color: var(--light-orange);
-}

Line range hint 7296-7301: Improve responsiveness and remove !important flag.

Consider these improvements:

  1. Use max-width or percentage for better responsiveness
  2. Remove !important flag and handle specificity properly
.deco {
  border: 1px solid var(--grey-border);
-  width: 65vw;
+  width: 100%;
+  max-width: 800px;
-  height: 0px !important;
+  height: 0;
}
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 122e139 and ea60a29.

📒 Files selected for processing (1)
  • src/style/app.module.css (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Test Application
🔇 Additional comments (4)
src/style/app.module.css (4)

7270-7276: LGTM!

The flexbox implementation is clean and follows consistent naming.


7277-7281: LGTM!

The padding implementation is clean and straightforward.


7289-7295: 🛠️ Refactor suggestion

Add font-size units and use color variables.

The font-size is missing units and the color should use CSS variables for consistency.

.second_box > h5 {
  text-decoration: none;
-  font-size: 10;
+  font-size: 10px;
  font-weight: 100;
-  color: #969696;
+  color: var(--gray-white);
}

Likely invalid or redundant comment.


7282-7288: 🛠️ Refactor suggestion

Add font-size units and use color variables.

The font-size is missing units and the color should use CSS variables for consistency.

.second_box > h4 {
-  font-size: 10;
+  font-size: 10px;
  font-weight: bold;
  text-decoration: none;
-  color: black;
+  color: var(--black-color);
}

Likely invalid or redundant comment.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (1)
src/style/app.module.css (1)

Line range hint 1420-1450: Use defined breakpoint variables in media queries.

For better maintainability, use the breakpoint variables defined in :root:

-@media (max-width: 1420px) {
+@media (max-width: var(--breakpoint-desktop)) {
  .orgCard {
    width: 100%;
  }
}

-@media (max-width: 550px) {
+@media (max-width: var(--breakpoint-mobile)) {
  .orgCard {
    width: 100%;
  }
  /* ... rest of the styles ... */
}
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ea60a29 and 6c319ee.

📒 Files selected for processing (1)
  • src/style/app.module.css (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Test Application
🔇 Additional comments (4)
src/style/app.module.css (4)

7293-7298: LGTM! Good use of CSS variables and max-width constraint.

The .deco class properly uses CSS variables for border color and includes a max-width constraint for better layout control.


Line range hint 47-156: Well-organized CSS variables with clear categorization.

The CSS variables are properly organized into logical categories (Neutral Colors, Blue Shades, etc.) which supports the PR's goal of improved maintainability. The comprehensive set of variables will help maintain consistent styling across components.


Line range hint 1-40: Excellent CSS methodology documentation.

The comprehensive documentation with clear guidelines for contributors, naming conventions, and examples aligns perfectly with the PR's goal of improving maintainability. This will help maintain consistency as the codebase grows.


7255-7262: Consider accessibility impact of background-blend-mode.

The background-blend-mode: darken property may affect color contrast ratios and accessibility. Ensure the blending doesn't reduce contrast below WCAG guidelines.

Run this script to check if background-blend-mode is used elsewhere in the codebase:

✅ Verification successful

Background blend mode usage is accessibility-safe

The background-blend-mode: darken is applied only to images with white backgrounds and doesn't affect text contrast or readability. This is a consistent pattern in the codebase for styling profile images.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for background-blend-mode usage
rg "background-blend-mode" --type css

Length of output: 256


Script:

#!/bin/bash
# Get context around background-blend-mode usage
echo "=== app.module.css ==="
rg -B 3 -A 3 "background-blend-mode" src/style/app.module.css

echo -e "\n=== OrganizationCardStart.module.css ==="
rg -B 3 -A 3 "background-blend-mode" src/components/OrganizationCardStart/OrganizationCardStart.module.css

echo -e "\n=== app.css ==="
rg -B 3 -A 3 "background-blend-mode" src/assets/css/app.css

Length of output: 935

src/style/app.module.css Outdated Show resolved Hide resolved
src/style/app.module.css Outdated Show resolved Hide resolved
coderabbitai[bot]
coderabbitai bot previously approved these changes Jan 22, 2025
Copy link
Contributor

@palisadoes palisadoes left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. See comments.
  2. Please attach a video


.alignimg {
border-radius: 50%;
background-color: var(--white-color);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use variable names that describe the function of the color and not the color itself. This will help with adding a Dark Mode feature.

  • For example --search-button-bg is much better than --light-blue

}

.box {
color: var(--light-orange);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use variable names that describe the function of the color and not the color itself. This will help with adding a Dark Mode feature.

  • For example --search-button-bg is much better than --light-blue

font-size: 10px;
font-weight: bold;
text-decoration: none;
color: black;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use variable names that describe the function of the color and not the color itself. This will help with adding a Dark Mode feature.

  • For example --search-button-bg is much better than --light-blue

text-decoration: none;
font-size: 10px;
font-weight: 100;
color: var(--gray-white);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use variable names that describe the function of the color and not the color itself. This will help with adding a Dark Mode feature.

  • For example --search-button-bg is much better than --light-blue

}

.deco {
border: 1px solid var(--grey-border);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use variable names that describe the function of the color and not the color itself. This will help with adding a Dark Mode feature.

  • For example --search-button-bg is much better than --light-blue

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🔭 Outside diff range comments (2)
src/style/app.module.css (2)

Line range hint 44-87: Improve color variable system for better maintainability and dark mode support.

While some variables have been renamed to be more semantic (e.g., --text-primary-color), many still use color names instead of their functional purpose. This makes dark mode implementation difficult.

Reorganize color variables using semantic names that describe their function:

- --grey-light: #eaebef;
- --grey-dark: #707070;
+ --surface-secondary: #eaebef;
+ --text-muted: #707070;

- --blue-primary: #0056b3;
- --blue-subtle: #7c9beb;
+ --brand-primary: #0056b3;
+ --brand-secondary: #7c9beb;

- --light-blue-color: #286fe0;
- --dimp-white: #b5b5b5;
+ --action-primary: #286fe0;
+ --border-muted: #b5b5b5;

- --text-highlight-color:#febc59;
+ --text-emphasis: #febc59;

Group related colors together and add comments explaining their usage:

:root {
  /* Brand Colors */
  --brand-primary: #0056b3;
  --brand-secondary: #7c9beb;
  
  /* Text Colors */
  --text-primary: #000000;
  --text-secondary: #808080;
  --text-emphasis: #febc59;
  
  /* Surface Colors */
  --surface-primary: #ffffff;
  --surface-secondary: #eaebef;
  
  /* Action Colors */
  --action-primary: #286fe0;
  --action-hover: #1e4e8c;
  
  /* Border Colors */
  --border-primary: #e8e5e5;
  --border-muted: #b5b5b5;
}

This will make it easier to:

  • Implement dark mode by swapping color values
  • Maintain consistent UI colors
  • Understand the purpose of each color variable
🧰 Tools
🪛 GitHub Actions: PR Workflow

[warning] Code style issues found. Run Prettier with --write to fix formatting issues.


Line range hint 1-43: Improve CSS organization and documentation for better maintainability.

While consolidating styles into a global file is good, the current organization can be improved:

  1. Enhance the documentation header:
/**
 * Global Styles for Talawa Admin
 * 
 * This file contains all global styles and CSS custom properties.
 * It is organized into the following sections:
 * 
 * 1. Custom Properties
 *    - Brand Colors
 *    - Text Colors
 *    - Surface Colors
 *    - Spacing
 *    - Typography
 *    - Breakpoints
 * 
 * 2. Base Styles
 * 3. Layout
 * 4. Components
 * 5. Utilities
 * 6. Media Queries
 */
  1. Add a spacing scale using CSS custom properties:
:root {
  /* Spacing Scale */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
}
  1. Centralize breakpoints and media queries:
:root {
  /* Breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

/* Use at end of file */
@media (max-width: var(--breakpoint-sm)) {
  /* Small screen styles */
}

@media (max-width: var(--breakpoint-md)) {
  /* Medium screen styles */
}
  1. Group related styles using comments:
/* Layout
   ========================================================================== */

/* Components
   ========================================================================== */

/* Utilities
   ========================================================================== */

This organization will:

  • Make the codebase more maintainable
  • Reduce duplication
  • Make it easier to find and modify styles
  • Provide better documentation for developers
🧰 Tools
🪛 GitHub Actions: PR Workflow

[warning] Code style issues found. Run Prettier with --write to fix formatting issues.

🧹 Nitpick comments (1)
src/style/app.module.css (1)

Line range hint 1-7313: Fix code formatting issues.

The pipeline reports Prettier formatting issues. Run Prettier with the --write flag to automatically fix formatting:

prettier --write src/style/app.module.css
🧰 Tools
🪛 GitHub Actions: PR Workflow

[warning] Code style issues found. Run Prettier with --write to fix formatting issues.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 6c319ee and a362f1b.

📒 Files selected for processing (1)
  • src/style/app.module.css (73 hunks)
🧰 Additional context used
🪛 GitHub Actions: PR Workflow
src/style/app.module.css

[warning] Code style issues found. Run Prettier with --write to fix formatting issues.

Comment on lines +7270 to +7313
.alignimg {
border-radius: 50%;
background-color: var(--icon-bg-color);
background-blend-mode: darken;
height: clamp(50px, 4vw, 65px);
width: clamp(50px, 4vw, 65px);
object-fit: cover;
}

.box {
color: var(--text-highlight-color);
}
.first_box {
display: flex;
flex-direction: row;
padding-bottom: 10px;
padding-top: 10px;
}

.second_box {
padding-left: 20px;
padding-top: 10px;
}

.second_box > h4 {
font-size: 10px;
font-weight: bold;
text-decoration: none;
color: var(--text-primary-color);
}

.second_box > h5 {
text-decoration: none;
font-size: 10px;
font-weight: 100;
color: var(--text-secondary-color);
}

.deco {
border: 1px solid var(--border-color);
width: 100%;
max-width: 800px;
height: 0;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Improve OrganizationCard styles for better maintainability and accessibility.

The migrated styles have several areas for improvement:

  1. Use semantic class names that reflect component purpose:
-.box {
+.organizationHighlight {
   color: var(--text-highlight-color);
 }

-.first_box {
+.organizationHeader {
   display: flex;
   flex-direction: row;
   padding: 10px 0;
 }

-.second_box {
+.organizationDetails {
   padding-left: 20px;
   padding-top: 10px;
 }
  1. Replace fixed font sizes with relative units for better accessibility:
-.second_box > h4 {
-  font-size: 10px;
+.organizationDetails > h4 {
+  font-size: 0.875rem;
   font-weight: bold;
 }

-.second_box > h5 {
-  font-size: 10px;
+.organizationDetails > h5 {
+  font-size: 0.875rem;
   font-weight: 100;
 }
  1. Add responsive design considerations:
@media (max-width: 768px) {
  .organizationHeader {
    flex-direction: column;
  }
  
  .organizationDetails {
    padding-left: 0;
    padding-top: 15px;
  }
}
🧰 Tools
🪛 GitHub Actions: PR Workflow

[warning] Code style issues found. Run Prettier with --write to fix formatting issues.

@gurramkarthiknetha
Copy link
Contributor Author

this is not yet completed .
i will update soon

@gurramkarthiknetha
Copy link
Contributor Author

i kept a new pr #3406
please review

@gurramkarthiknetha gurramkarthiknetha marked this pull request as draft January 23, 2025 19:09
@palisadoes
Copy link
Contributor

Thanks for submitting your PR, but we must close it.

  1. We get notified of every event in the queue, and draft PRs like these, and their updates that require no action can be a distraction. We need our reviewers to focus on updates that are ready.
  2. Don't be discouraged, we are just trying to keep our workloads to a manageable level.

Please resubmit when you are ready.

@palisadoes palisadoes closed this Jan 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants