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

Feature/malaviya parth/138 #140

Closed
Closed
Show file tree
Hide file tree
Changes from 2 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
Binary file added site/src/assets/images/social-icons/twitterX.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion site/src/components/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import SlackIcon from "../../assets/images/social-icons/slack.svg";
import DockerIcon from "../../assets/images/social-icons/docker.svg";
import YoutubeIcon from "../../assets/images/social-icons/youtube.svg";
import TwitterIcon from "../../assets/images/social-icons/twitter.svg";
import TwitterIcon from "../../assets/images/social-icons/twitterX.png";
import GithubIcon from "../../assets/images/social-icons/github.svg";
import CalendarIcon from "../../assets/images/social-icons/calendar.png";
import LinkedinIcon from "../../assets/images/social-icons/linkedin.png";
Expand Down
23 changes: 23 additions & 0 deletions site/src/index.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,23 @@ export const GlobalStyle = createGlobalStyle`
section{
position: relative;
}

::-webkit-scrollbar {
width: 0.5rem;
}

::-webkit-scrollbar-track {
background: ${({ theme }) => theme.trackcol};
}

::-webkit-scrollbar-thumb {
background: ${({ theme }) => theme.thumbcol};
border-radius: 0.3rem;
}

::-webkit-scrollbar-thumb:hover {
background: ${({ theme }) => theme.thumbhover};
}
`;


Expand All @@ -105,11 +122,17 @@ export const lightTheme = {
toggleBorder: '#FFF',
background: '#363537',
btn: '#FFF',
thumbcol : 'rgb(60,73,79)',
trackcol : 'rgb(255,255,255)',
thumbhover : 'rgb(85,85,85)',
}
export const darkTheme = {
body: 'rgb(18, 18, 18)',
text: '#FAFAFA',
toggleBorder: '#6B8096',
background: '#999',
btn: '#1E2117',
thumbcol : 'rgb(0,211,169)',
trackcol : 'rgb(18,18,18)',
thumbhover : 'rgb(85,85,85)',
}