-
-
Notifications
You must be signed in to change notification settings - Fork 862
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
Changes from 3 commits
122e139
ea60a29
6c319ee
665853e
18b94a6
a362f1b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7251,3 +7251,48 @@ button[data-testid='createPostBtn'] { | |
flex-direction: row; | ||
justify-content: center; | ||
} | ||
|
||
.alignimg { | ||
border-radius: 50%; | ||
background-color: var(--white-color); | ||
background-blend-mode: darken; | ||
height: clamp(50px, 4vw, 65px); | ||
width: clamp(50px, 4vw, 65px); | ||
object-fit: cover; | ||
} | ||
|
||
.box { | ||
color: var(--light-orange); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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.
|
||
} | ||
gurramkarthiknetha marked this conversation as resolved.
Show resolved
Hide resolved
|
||
.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: black; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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.
|
||
} | ||
gurramkarthiknetha marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
.second_box > h5 { | ||
text-decoration: none; | ||
font-size: 10px; | ||
font-weight: 100; | ||
color: #969696; | ||
} | ||
|
||
.deco { | ||
border: 1px solid var(--grey-border); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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.
|
||
width: 100%; | ||
max-width: 800px; | ||
height: 0; | ||
} |
There was a problem hiding this comment.
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.
--search-button-bg
is much better than--light-blue