Skip to content

Commit 501e0cf

Browse files
Finalizing documents
1 parent d25c04e commit 501e0cf

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Git Widget
22

33

4-
### Showcase your projects on their official websites/blogs.
4+
### Showcase your projects on their official websites/blogs. πŸ‘¨β€πŸ’»πŸ‘©β€πŸ’»
55

6-
### A Detailed timeline of contributions done on your project.
6+
### A Detailed timeline of contributions done on your project. πŸ’–
77

88

99

10-
[![Screenshot of the Meetup Widget](https://res.cloudinary.com/prafulla98/image/upload/v1582385089/Meetup-Widget/ss_2_mymjm6.png?style=center)](#installation-and-usage)
10+
[![Screenshot of the Git Widget](https://res.cloudinary.com/prafulla98/image/upload/v1582651061/git-widget/git-widget-ss_rsyvpl.png)](#installation-and-usage)
1111

1212
# Installation & Usage
1313

β€Žsrc/card.component.mjsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export class GitWidget extends HTMLElement {
105105
<h5 class="event_message"> ${event.type=='PullRequestEvent' && event.payload.action=='closed'? "Closed The PR : "+"<br> <span style='color:blue'><a href='"+event.payload.pull_request.html_url+"' target='_blank'>"+event.payload.pull_request.title+"</span></a>" : '' } </h5>
106106
<h5 class="event_message"> ${event.type=='IssuesEvent' && event.payload.action=='closed'? "Closed the Issue: "+"<br> <span style='color:blue'>"+event.payload.issue.title+"</span>" : '' } </h5>
107107
<h5 class="event_message"> ${event.type=='IssuesEvent' && event.payload.action=='opened'? "Opened the Issue: "+"<br> <span style='color:blue'>"+event.payload.issue.title+"</span>" : '' } </h5>
108-
<h5 class="event_message"> ${event.type=='WatchEvent' ? "<span color='blue> Is now watching the repository </span>" : '' } </h5>
108+
<h5 class="event_message"> ${event.type=='WatchEvent' ? "<span style='color:blue'> Is now watching the repository </span>" : '' } </h5>
109109
<h5 class="event_message"> ${event.type=='IssueCommentEvent'? "<a href='"+event.payload.comment.html_url+"' target='_blank'>"+ event.payload.comment.body+"</a>" : '' } </h5>
110110
<h5 class="event_message" style="color:darkgreen"> ${event.type=='ReleaseEvent'? "<a href='"+event.payload.release.html_url+"' target='_blank'>"+ "Released A New Version ! ^_^" +"</a>" : '' } </h5>
111111

β€Žsrc/card.style.mjsβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ export const css =
22
`
33
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
44
.card {
5-
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
6-
background-color:var(--main-bgcolor,#F6F7F8);
5+
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); background-color:var(--main-bgcolor,#F6F7F8);
76
font-family:'Roboto',sans-serif;
87
}
98
.card * {

β€Žsrc/index.htmlβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
77
<title>Git Project Widget</title>
88
<style>
9-
9+
body{
10+
margin-left:15%;
11+
}
1012
</style>
1113
</head>
1214

β€Žsrc/index.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './card.component.mjs';
1+
export * from './card.component.mjs';gi

0 commit comments

Comments
Β (0)