* 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
18 lines
458 B
TypeScript
18 lines
458 B
TypeScript
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 contract's gas usage",
|
|
icon: Icon,
|
|
colors: {
|
|
main: '#FF7144',
|
|
secondary: '#FED7CB',
|
|
secondary_alt: '#FECEBE',
|
|
type: '#EB8666',
|
|
type_alt: '#D16745',
|
|
dark: '#985C49',
|
|
},
|
|
};
|