Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/githru/githru-vscode-ext in…
Browse files Browse the repository at this point in the history
…to eslint-error-fix
  • Loading branch information
mdgarden committed Aug 11, 2024
2 parents 32a6415 + 3117e5b commit 77806a0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
6 changes: 3 additions & 3 deletions packages/view/src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ body {

.middle-container {
display: grid;
grid-template-columns: 4fr 1fr;
grid-template-columns: 4fr 2fr;
height: calc(100vh - 200px);
padding: 20px;
}

.no-commits-container{
.no-commits-container {
display: flex;
flex-direction: column;
justify-content: center;
Expand All @@ -48,4 +48,4 @@ body {
h1 {
margin: 40px 0 0 0;
}
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import "styles/_pallete";

.file-icicle-summary {
width: 90%;
width: 16rem;
text {
fill: var(--primary-color);
filter: invert(100) grayscale(100) contrast(100);
Expand Down
1 change: 0 additions & 1 deletion packages/view/src/components/Statistics/Statistics.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
align-items: center;
gap: 5vh;
padding: 0 20px 20px;
width: 28%;
overflow-y: scroll;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "styles/_pallete";

.cluster-graph__container {
cursor: pointer;
min-width: 84px;
Expand Down Expand Up @@ -29,3 +31,14 @@
.circle-group {
fill: var(--primary-color);
}

.sub-graph-tooltip {
position: absolute;
z-index: 10;
background: $white;
padding: 8px 16px;
font-size: 10px;
line-height: 1.5;
border-radius: 5px;
color: $gray-900;
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ import { GRAPH_WIDTH } from "../ClusterGraph.const";
const tooltip = d3
.select("body")
.append("div")
.attr("class", "tooltip")
.style("position", "absolute")
.style("z-index", "10")
.attr("class", "sub-graph-tooltip")
.style("visibility", "hidden")
.text("Tooltip");

Expand Down

0 comments on commit 77806a0

Please sign in to comment.