From b158a6d7226fb50ecedcc07da8ef30e5e5690e46 Mon Sep 17 00:00:00 2001 From: August Skare Date: Thu, 18 Oct 2018 13:28:44 +0200 Subject: initial commit --- packages/dev-tools-pages/ts/context/profiler.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 packages/dev-tools-pages/ts/context/profiler.tsx (limited to 'packages/dev-tools-pages/ts/context/profiler.tsx') diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx new file mode 100644 index 000000000..d8982c56f --- /dev/null +++ b/packages/dev-tools-pages/ts/context/profiler.tsx @@ -0,0 +1,14 @@ +import Icon from 'ts/icons/logos/profiler.svg'; + +export default { + title: 'sol-profiler', + name: 'profiler', + subtitle: 'Gas profiling for Solidity', + tagline: "Implement data-guided optimizations by profiling your contrat's gas usage", + icon: Icon, + colors: { + main: '#FF7144', + secondary: '#FED7CB', + link: '#EB8666', + }, +}; -- cgit v1.2.3 From a4de585feb0f8e5ec99f0eb4a7b9aca8a24144f5 Mon Sep 17 00:00:00 2001 From: August Skare Date: Tue, 23 Oct 2018 12:34:35 +0100 Subject: Feature/colors (#5) * fix color variables * rename link var to type --- packages/dev-tools-pages/ts/context/profiler.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/dev-tools-pages/ts/context/profiler.tsx') diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx index d8982c56f..891c2f0bb 100644 --- a/packages/dev-tools-pages/ts/context/profiler.tsx +++ b/packages/dev-tools-pages/ts/context/profiler.tsx @@ -9,6 +9,6 @@ export default { colors: { main: '#FF7144', secondary: '#FED7CB', - link: '#EB8666', + type: '#EB8666', }, }; -- cgit v1.2.3 From 43b792f307118e09a683f3f76f0e0f22ee2d898d Mon Sep 17 00:00:00 2001 From: Megan Pearson Date: Thu, 25 Oct 2018 14:12:01 +0200 Subject: Fixed typos --- packages/dev-tools-pages/ts/context/profiler.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/dev-tools-pages/ts/context/profiler.tsx') diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx index 891c2f0bb..59f2f413a 100644 --- a/packages/dev-tools-pages/ts/context/profiler.tsx +++ b/packages/dev-tools-pages/ts/context/profiler.tsx @@ -4,7 +4,7 @@ export default { title: 'sol-profiler', name: 'profiler', subtitle: 'Gas profiling for Solidity', - tagline: "Implement data-guided optimizations by profiling your contrat's gas usage", + tagline: "Implement data-guided optimizations by profiling your contract's gas usage", icon: Icon, colors: { main: '#FF7144', -- cgit v1.2.3 From 7577d96671f23d1add83cbac1fc98480ee2a6529 Mon Sep 17 00:00:00 2001 From: August Skare Date: Fri, 26 Oct 2018 08:38:10 +0200 Subject: new hover styling --- packages/dev-tools-pages/ts/context/profiler.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'packages/dev-tools-pages/ts/context/profiler.tsx') diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx index 59f2f413a..2b0820add 100644 --- a/packages/dev-tools-pages/ts/context/profiler.tsx +++ b/packages/dev-tools-pages/ts/context/profiler.tsx @@ -9,6 +9,8 @@ export default { colors: { main: '#FF7144', secondary: '#FED7CB', + secondary_alt: '#FECEBE', type: '#EB8666', + type_alt: '#D16745', }, }; -- cgit v1.2.3 From f75cfd8aa425e6a1b1e22731ed888c399d453112 Mon Sep 17 00:00:00 2001 From: August Skare Date: Fri, 26 Oct 2018 08:44:27 +0200 Subject: fixed links in footer --- packages/dev-tools-pages/ts/context/profiler.tsx | 1 + 1 file changed, 1 insertion(+) (limited to 'packages/dev-tools-pages/ts/context/profiler.tsx') diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx index 2b0820add..d5dd2a394 100644 --- a/packages/dev-tools-pages/ts/context/profiler.tsx +++ b/packages/dev-tools-pages/ts/context/profiler.tsx @@ -12,5 +12,6 @@ export default { secondary_alt: '#FECEBE', type: '#EB8666', type_alt: '#D16745', + dark: '#5F1700', }, }; -- cgit v1.2.3 From 0e3cd82348570ed4c524d3b4f216001089f49125 Mon Sep 17 00:00:00 2001 From: August Skare Date: Mon, 29 Oct 2018 08:15:20 +0000 Subject: Fixes/august (#12) * fix button dimensions * fix footer hover color * breakout in trace component * fix padding on button on small screens * fix title with content on small screens * sizing adjustment in intro component * intro component adjustments * container size adjustments * meta og images * fixed gutter size * trace component fix + breakout fix * show copy button if touch device * responsive hero animation --- packages/dev-tools-pages/ts/context/profiler.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/dev-tools-pages/ts/context/profiler.tsx') diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx index d5dd2a394..9593c08ec 100644 --- a/packages/dev-tools-pages/ts/context/profiler.tsx +++ b/packages/dev-tools-pages/ts/context/profiler.tsx @@ -12,6 +12,6 @@ export default { secondary_alt: '#FECEBE', type: '#EB8666', type_alt: '#D16745', - dark: '#5F1700', + dark: '#985C49', }, }; -- cgit v1.2.3 From 54bd7df900316504e4403bc94cffd92930a6c763 Mon Sep 17 00:00:00 2001 From: August Skare Date: Fri, 16 Nov 2018 11:05:30 +0100 Subject: fix linting + code syntax for statless components --- packages/dev-tools-pages/ts/context/profiler.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/dev-tools-pages/ts/context/profiler.tsx') diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx index 9593c08ec..507fa663d 100644 --- a/packages/dev-tools-pages/ts/context/profiler.tsx +++ b/packages/dev-tools-pages/ts/context/profiler.tsx @@ -1,6 +1,6 @@ import Icon from 'ts/icons/logos/profiler.svg'; -export default { +export const context = { title: 'sol-profiler', name: 'profiler', subtitle: 'Gas profiling for Solidity', -- cgit v1.2.3 From 6919409c2b642937686ef8a77e21ad9f321a2be8 Mon Sep 17 00:00:00 2001 From: August Skare Date: Tue, 20 Nov 2018 15:28:18 +0100 Subject: typedef for context data --- packages/dev-tools-pages/ts/context/profiler.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'packages/dev-tools-pages/ts/context/profiler.tsx') diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx index 507fa663d..5ccfa5b4c 100644 --- a/packages/dev-tools-pages/ts/context/profiler.tsx +++ b/packages/dev-tools-pages/ts/context/profiler.tsx @@ -1,6 +1,8 @@ import Icon from 'ts/icons/logos/profiler.svg'; -export const context = { +import { ContextInterface } from './index'; + +export const context: ContextInterface = { title: 'sol-profiler', name: 'profiler', subtitle: 'Gas profiling for Solidity', -- cgit v1.2.3