37973bc143
Prevents empty SCSS rules from being included in the SCSS. Also fixes the handful of lints caught by the linter.
34 lines
476 B
SCSS
34 lines
476 B
SCSS
.project-network {
|
|
border: 1px solid $border-color;
|
|
|
|
.controls {
|
|
color: #888;
|
|
font-size: 14px;
|
|
padding: 5px;
|
|
border-bottom: 1px solid $border-color;
|
|
background: #eee;
|
|
}
|
|
|
|
.network-graph {
|
|
background: #fff;
|
|
height: 500px;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
}
|
|
}
|
|
|
|
.graphs {
|
|
.graph-author-email {
|
|
float: right;
|
|
color: #777;
|
|
}
|
|
|
|
.graph-additions {
|
|
color: #4a2;
|
|
}
|
|
|
|
.graph-deletions {
|
|
color: #d12f19;
|
|
}
|
|
}
|
|
|