blob: 05f34e0d5d74024afee7485f6c4621a3b84dc794 [file] [log] [blame]
Matteo Scandolo9d7940c2017-01-19 18:28:43 -08001@import './../../style/vars.scss';
2
3$side-panel-width: 400px;
4
5xos-side-panel {
6 .xos-side-panel {
7 width: $side-panel-width;
8 height: 100%;
9 position: fixed;
10 background: $background-dark-color;
11 z-index: 9999;
12 right: -$side-panel-width;
13 padding: $padding;
14 transition: all .5s cubic-bezier(0.215, 0.610, 0.355, 1.000);
15
16 &.open {
17 right: 0;
18 }
19 }
20}