fix(instant): darken overlay color

This commit is contained in:
Brandon Millman
2018-12-01 00:47:07 -08:00
parent 074944247d
commit 6f44944ffd
3 changed files with 7 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 KiB

View File

@@ -31,6 +31,11 @@
height: 100vh;
background-color: rgba(0, 0, 0, 0.2);
}
.full-screen {
height: 100vh;
width: 100vw;
}
</style>
</head>
@@ -58,6 +63,7 @@
</button>
</div>
</div>
<img id="augurScreenshot" class="full-screen" src="./augur_screenshot.png" />
<div id="zeroExInstantContainer"></div>
<script>
// Simulate history

View File

@@ -33,7 +33,7 @@ export const Overlay =
Overlay.defaultProps = {
zIndex: zIndex.overlayDefault,
backgroundColor: generateOverlayBlack(0.6),
backgroundColor: generateOverlayBlack(0.9),
};
Overlay.displayName = 'Overlay';