Skip to content

Commit a60fcf8

Browse files
committed
Add link to github repo
1 parent eece329 commit a60fcf8

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

dist/styles.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,3 +252,16 @@ hr {
252252
color: rgba(255, 255, 255, 0.9);
253253
font-weight: bold;
254254
}
255+
256+
.github-logo {
257+
width: 32px;
258+
float: right;
259+
filter: opacity(80%);
260+
-webkit-filter: opacity(80%);
261+
transition: filter 0.13s, -webkit-filter 0.13s;
262+
}
263+
264+
.github-logo:hover {
265+
filter: opacity(90%);
266+
-webkit-filter: opacity(90%);
267+
}

src/components/Workspace.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ export default class Workspace extends Component {
7373
message="workspace"
7474
/>
7575
{ type == UNIT_TEST && <TestSummary unitTests={ unitTests } /> }
76+
<a href="https://github.com/lambdabricks/bricks-front-react">
77+
<img
78+
className="github-logo"
79+
src="https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg"
80+
/>
81+
</a>
7682
</div>
7783
<div style={ workspacesStyles} >
7884
{ unitTests.map((unitTest, index) => {

0 commit comments

Comments
 (0)