Skip to content
New issue

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

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

Already on GitHub? # to your account

changed styling in view all section in changed the color and hover in… #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
2 changes: 2 additions & 0 deletions src/components/Landing/Categories/categories.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@
color: #196712;
}



/* CATEGORIES - END */
/* Tablet/Laptop Version 550*/
@media only screen and (min-width: 550px) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Landing/CategoryBlogs/categoryBlogs.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

.labels a {
text-decoration: none;
color: #5b5858b0;
color: rgb(0 0 0 / 78%);
font-size: 0.75rem;
font-weight: bold;
transition: all 0.3s ease;
Expand Down
3 changes: 2 additions & 1 deletion src/components/Landing/HeroBlog/HeroBlog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ const HeroBlog: React.FC<propTypes> = ({
<p className="hero-card-title">{title}</p>
<p className="hero-card-date"> {date} </p>
<p className="hero-card-text">{content}</p>
<Link to={`/blogs/${slug}`}>Read More</Link>
<div class="fade-in-text"><Link to={`/blogs/${slug}`}>Read More</Link>
</div>
</div>
</section>
{sideBar && (
Expand Down
6 changes: 6 additions & 0 deletions src/components/Landing/HeroBlog/heroBlog.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@
font-size: 0.9rem;
font-weight: 450;
}
.hero-card-content a:hover{
color: #5b5858d8;
}


.side-section {
display: none;
text-align: left;
Expand All @@ -99,6 +104,7 @@
width: 100%;
}


/* FROM THE BLOG - END */

/* Tablet/Laptop Version 550*/
Expand Down