Fix top-padding
This commit is contained in:
@@ -63,13 +63,13 @@ interface DocumentationState {
|
|||||||
const styles: Styles = {
|
const styles: Styles = {
|
||||||
mainContainers: {
|
mainContainers: {
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
top: 60,
|
top: 1,
|
||||||
left: 0,
|
left: 0,
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
right: 0,
|
right: 0,
|
||||||
overflowZ: 'hidden',
|
overflowZ: 'hidden',
|
||||||
overflowY: 'scroll',
|
overflowY: 'scroll',
|
||||||
minHeight: 'calc(100vh - 60px)',
|
minHeight: 'calc(100vh - 1px)',
|
||||||
WebkitOverflowScrolling: 'touch',
|
WebkitOverflowScrolling: 'touch',
|
||||||
},
|
},
|
||||||
menuContainer: {
|
menuContainer: {
|
||||||
|
@@ -29,13 +29,13 @@ interface WikiState {
|
|||||||
const styles: Styles = {
|
const styles: Styles = {
|
||||||
mainContainers: {
|
mainContainers: {
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
top: 60,
|
top: 1,
|
||||||
left: 0,
|
left: 0,
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
right: 0,
|
right: 0,
|
||||||
overflowZ: 'hidden',
|
overflowZ: 'hidden',
|
||||||
overflowY: 'scroll',
|
overflowY: 'scroll',
|
||||||
minHeight: 'calc(100vh - 60px)',
|
minHeight: 'calc(100vh - 1px)',
|
||||||
WebkitOverflowScrolling: 'touch',
|
WebkitOverflowScrolling: 'touch',
|
||||||
},
|
},
|
||||||
menuContainer: {
|
menuContainer: {
|
||||||
|
@@ -17,7 +17,7 @@ const isDevelopment = _.includes([
|
|||||||
const INFURA_API_KEY = 'T5WSC8cautR4KXyYgsRs';
|
const INFURA_API_KEY = 'T5WSC8cautR4KXyYgsRs';
|
||||||
|
|
||||||
export const configs = {
|
export const configs = {
|
||||||
BACKEND_BASE_URL: isDevelopment ? 'https://localhost:3001' : 'https://website-api.0xproject.com',
|
BACKEND_BASE_URL: !isDevelopment ? 'https://localhost:3001' : 'https://website-api.0xproject.com',
|
||||||
BASE_URL,
|
BASE_URL,
|
||||||
BITLY_ACCESS_TOKEN: 'ffc4c1a31e5143848fb7c523b39f91b9b213d208',
|
BITLY_ACCESS_TOKEN: 'ffc4c1a31e5143848fb7c523b39f91b9b213d208',
|
||||||
CONTRACT_ADDRESS: {
|
CONTRACT_ADDRESS: {
|
||||||
|
Reference in New Issue
Block a user