2018-02-13 09:08:01 -08:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2018-02-13 09:08:01 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.Sidebar {
|
2018-02-12 09:28:31 -08:00
|
|
|
position: absolute;
|
|
|
|
z-index: 3;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 350px;
|
|
|
|
background: white;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 25px;
|
|
|
|
max-height: calc(100% - 50px);
|
|
|
|
border-radius: 6px;
|
|
|
|
bottom: auto;
|
|
|
|
box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
|
|
|
|
}
|