1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-26 03:06:25 +02:00

small fixes

This commit is contained in:
Matthias Kretschmann 2018-09-23 23:03:56 +02:00
parent fd89b12d4a
commit 8cadf6df4a
Signed by: m
GPG Key ID: 606EEEF3C479A91F
4 changed files with 14 additions and 2 deletions

View File

@ -15,6 +15,11 @@
margin-top: $spacer;
li {
margin-left: $spacer;
margin-right: $spacer;
}
li::before {
top: $spacer / 7;
}

View File

@ -25,7 +25,7 @@
&.appearActive,
&.enterActive {
opacity: 1;
transition: 200ms cubic-bezier(.4, 1.72, .61, .7);
transition: .2s ease-out;
transform: translate3d(0, 0, 0);
}
}
@ -36,7 +36,7 @@
&.exitActive {
opacity: .01;
transition: 200ms ease-in;
transition: .2s ease-in;
transform: translate3d(0, -100px, 0);
}
}

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -7,6 +7,13 @@
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-left: $spacer;
padding-right: $spacer;
@media (min-width: $screen-md) {
padding-left: 0;
padding-right: 0;
}
}
.photo {