fix: gallery link overlaying description (mobile)
This commit is contained in:
parent
bd44afb07a
commit
6d446c36ab
|
@ -243,8 +243,19 @@ export default {
|
||||||
|
|
||||||
.services-list__gallery-link {
|
.services-list__gallery-link {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 3rem;
|
width: 100%;
|
||||||
left: 2rem;
|
height: 100%;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
opacity: 0;
|
||||||
|
|
||||||
|
@media (min-width: $bp__layout) {
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
bottom: 3rem;
|
||||||
|
left: 2rem;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.background {
|
.background {
|
||||||
|
|
Loading…
Reference in New Issue