diff --git a/ts/graphs/BUILD.bazel b/ts/graphs/BUILD.bazel index 84b26bcb7..8911b97ef 100644 --- a/ts/graphs/BUILD.bazel +++ b/ts/graphs/BUILD.bazel @@ -20,6 +20,7 @@ ts_library( "GraphsPage", "lib", "//ts/lib", + "//ts/sveltelib", "@npm//svelte", "@npm//svelte2tsx", ], @@ -32,6 +33,7 @@ ts_library( exclude = ["index.ts"], ), deps = [ + "//ts/sveltelib", "//ts/lib", "//ts/lib:backend_proto", "@npm//@types/d3", @@ -59,6 +61,7 @@ esbuild( output_css = True, visibility = ["//visibility:public"], deps = [ + "//ts/sveltelib", "//ts/lib", "//ts/lib:backend_proto", "//ts/lib:fluent_proto", diff --git a/ts/graphs/Graph.svelte b/ts/graphs/Graph.svelte index 8ee040fd4..03c34128f 100644 --- a/ts/graphs/Graph.svelte +++ b/ts/graphs/Graph.svelte @@ -43,6 +43,10 @@ display: none; } } + + &:focus { + outline: 0; + } } h1 { @@ -57,7 +61,7 @@ } -