mirror of
https://github.com/usatiuk/photos.git
synced 2025-10-28 23:37:48 +01:00
show photo in an overlay
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user