show photo in an overlay

This commit is contained in:
2020-10-16 15:47:27 +00:00
committed by Stepan Usatiuk
parent c878d08613
commit 537587b052
6 changed files with 96 additions and 26 deletions

View File

@@ -1,5 +1,32 @@
@import "~@blueprintjs/core/lib/scss/variables";
#photoOverlayContainer {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
transition: 0.3s;
}
.bp3-overlay-enter {
opacity: 0;
}
.bp3-overlay-enter-active {
opacity: 1;
}
.bp3-overlay-exit {
opacity: 1;
}
.bp3-overlay-exit-active {
opacity: 0;
}
#overview {
display: flex;
flex-direction: column;