Removed gradient line in footer on desktop

This commit is contained in:
Kristján Eldjárn 2022-07-29 15:51:57 -07:00
parent d5016c1294
commit 5f0694ce9d

View File

@ -3,7 +3,7 @@
.pre__footer {
@include respond-to('mobile') {
margin-top: tovw(140px, 'mobile', 140px);
padding-bottom: tovw(50px, 'tablet', 30px);
padding-bottom: tovw(20px, 'tablet', 30px);
}
max-width: tovw(753px, 'default', 375px);
@ -35,7 +35,7 @@
@include respond-to('mobile') {
background-size: 190%;
height: calc(var(--vw) * 120);
height: calc(var(--vw) * 100);
margin-top: tovw(100px, 'mobile', 100px);
}
@ -365,13 +365,15 @@
.gradient_line {
position: absolute;
right: calc(50% - 5px);
top: -40px;
top: -90px;
background-image: url('/images/gradient_line_dark.png');
background-size: contain;
width: 10px;
height: 88px;
display: none;
@include respond-to('mobile') {
top: -90px;
display: block;
}
}