Browse Source

resize and color of links

Trent White 9 years ago
parent
commit
c727c3c441
2 changed files with 8 additions and 2 deletions
  1. 1 1
      .bra.toml
  2. 7 1
      public/sass/components/_footer.scss

+ 1 - 1
.bra.toml

@@ -3,7 +3,7 @@ init_cmds = [
   ["go", "build", "-o", "./bin/grafana-server", "./pkg/cmd/grafana-server"],
   ["go", "build", "-o", "./bin/grafana-server", "./pkg/cmd/grafana-server"],
 	["./bin/grafana-server"]
 	["./bin/grafana-server"]
 ]
 ]
-watch_all = true
+watch_all = false
 watch_dirs = [
 watch_dirs = [
 	"$WORKDIR/pkg",
 	"$WORKDIR/pkg",
 	"$WORKDIR/public/views",
 	"$WORKDIR/public/views",

+ 7 - 1
public/sass/components/_footer.scss

@@ -1,8 +1,14 @@
+footer {
+		font-size: 75%;
+	a {
+		color: $gray-1;
+	}
+}
+
 .grafana-version-info {
 .grafana-version-info {
   position: absolute;
   position: absolute;
   bottom: 2px;
   bottom: 2px;
   left: 3px;
   left: 3px;
-  font-size: 80%;
   color: darken($gray-1, 25%);
   color: darken($gray-1, 25%);
   a { color: darken($gray-1, 25%); }
   a { color: darken($gray-1, 25%); }
 }
 }