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

Improve UI of Social Page #636

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

DeshDeepakKant
Copy link

Related Issue

Changes Introduced

  • Improved layout & spacing for better readability
  • Enhanced button styles and hover effects
  • Consistent icon styling for a cohesive look
  • Better responsiveness across devices

Screenshots

Before:

image

After:

image

Copy link
Contributor

@bupd bupd left a comment

Choose a reason for hiding this comment

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

Thanks for your contributions. @DeshDeepakKant

I have added some suggestions.

Comment on lines 81 to 210

.slack-channels {
display: flex;
flex-direction: column;
gap: 1rem;
}

.channel-button {
background: #4A154B;
color: white;
padding: 1rem;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
}

.channel-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(74, 21, 75, 0.2);
}

.channel-content {
display: flex;
align-items: center;
gap: 1rem;
}

.channel-info {
display: flex;
flex-direction: column;
}

.channel-name {
font-weight: bold;
font-size: 1.1rem;
}

.channel-description {
font-size: 0.9rem;
opacity: 0.9;
}

.slack-note {
display: flex;
align-items: center;
gap: 0.75rem;
background: #f7fafc;
padding: 1rem;
border-radius: 8px;
margin-top: 1rem;
}

.lists-container {
display: grid;
gap: 1.5rem;
margin-top: 1.5rem;
}

.list-card {
background: #f7fafc;
padding: 1.5rem;
border-radius: 8px;
transition: all 0.3s ease;
}

.list-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.list-header-inline {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1rem;
color: #2D3748;
font-size: 1.25rem;
}

a {
color: #2B6CB0;
text-decoration: none;
transition: color 0.2s ease;
}

a:hover {
color: #2C5282;
}

@media (max-width: 768px) {
.community-connect-container {
grid-template-columns: 1fr;
padding: 1rem;
}

.connect-card {
padding: 1.5rem;
}
}
</style>
Copy link
Contributor

Choose a reason for hiding this comment

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

Avoid using inline css/stlyling.

Copy link
Author

Choose a reason for hiding this comment

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

Okay, i will include it in the css file

@Vad1mo Vad1mo enabled auto-merge (squash) February 25, 2025 16:40
@Vad1mo
Copy link
Member

Vad1mo commented Feb 25, 2025

I would remove the box shadow

Bildschirmfoto 2025-02-25 um 17 44 21

I would also reduce introduce to many CSS, you should be able to accomplish the same result with plain twitter bootstrap possibilites.

and if its onyl a few things here and there only for thtat component you can IMO also inline that.

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.

6 participants