34 lines
609 B
SCSS
34 lines
609 B
SCSS
@import '~styles/Variables.scss';
|
|
|
|
.navigation {
|
|
margin-right: -1 * $navigation-width; // offset so the displayWrapper is centered
|
|
padding: 1em;
|
|
position: sticky;
|
|
top: 90px;
|
|
display: inline-flex;
|
|
flex-flow: column nowrap;
|
|
align-self: flex-start;
|
|
|
|
&.menu {
|
|
position: fixed;
|
|
right: $navigation-width;
|
|
z-index: 1;
|
|
width: 100px;
|
|
height: 325px;
|
|
justify-content: space-between;
|
|
|
|
button > * {
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.navigationButton {
|
|
padding: 0;
|
|
margin-bottom: 1em;
|
|
outline: none;
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|