Fix website dropdowns

Summary:
Issue https://github.com/facebook/prepack/issues/1296.

The previous version of Tether Select that was used in the website had `z-index: 100;` (still can check it in `gh-pages` branch) but in the version that we use from CDN, in order to reduce the size of Prepack repo, there is no `z-index`. So I've added it to the website styles.
Closes https://github.com/facebook/prepack/pull/1298

Differential Revision: D6638548

Pulled By: NTillmann

fbshipit-source-id: 1fb05a37d7bd83a71936ac4aa4ed9a138825f032
This commit is contained in:
artiebits 2017-12-27 09:45:41 -08:00 committed by Facebook Github Bot
parent cfdd9df527
commit 7b3d0dba83

View File

@ -656,3 +656,8 @@ a.nav-item.is-brand {
.oss-logo {
height: 45px;
}
/* TETHER SELECT */
.select.select-theme-dark {
z-index: 100;
}