Skip to content
Snippets Groups Projects
Commit 6bdb56d4 authored by Mathis Neumann's avatar Mathis Neumann
Browse files

hide sidebar when nothing is clicked since there is nothing to show anymore

parent f22c35f2
No related branches found
No related tags found
No related merge requests found
$resizingAnimationDuration: .5s; // see deployments/detail route for property
.visualisationContainer {
@extend .col-md-10;
@extend .col-md-12;
transition: width $resizingAnimationDuration;
canvas {
......@@ -10,8 +10,9 @@ $resizingAnimationDuration: .5s; // see deployments/detail route for property
}
.visualisationSidebar {
@extend .col-md-2;
transition: width $resizingAnimationDuration;
display:none;
opacity: 0; // for animation
transition: width opacity $resizingAnimationDuration;
}
button.minimizeSidebar {
......@@ -22,6 +23,8 @@ button.minimizeSidebar {
@extend .col-md-8
}
.visualisationSidebar {
display: block;
opacity: 1; // for slight animation
@extend .col-md-4
}
button.minimizeSidebar {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment