fix: gallery link overlaying description (mobile)

This commit is contained in:
ray 2019-03-11 21:00:32 +02:00
parent bd44afb07a
commit 6d446c36ab
1 changed files with 13 additions and 2 deletions

View File

@ -243,8 +243,19 @@ export default {
.services-list__gallery-link { .services-list__gallery-link {
position: absolute; position: absolute;
width: 100%;
height: 100%;
bottom: 0;
left: 0;
opacity: 0;
@media (min-width: $bp__layout) {
width: auto;
height: auto;
bottom: 3rem; bottom: 3rem;
left: 2rem; left: 2rem;
opacity: 1;
}
} }
.background { .background {