-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create new footer * fix: padding on mobile version * fix: add waves * fix: mobile footer padding * fix: alter order of companies
- Loading branch information
1 parent
3ad609d
commit d70e8b4
Showing
7 changed files
with
402 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,7 @@ nav { | |
|
||
main { | ||
grid-area: content; | ||
margin-bottom: 100px; | ||
/* margin-bottom: 100px; */ | ||
} | ||
|
||
footer { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,79 @@ | ||
footer { | ||
@apply fixed bottom-0 z-10 w-full; | ||
|
||
div { | ||
@apply absolute flex flex-wrap items-center justify-center bg-white-100; | ||
gap: 2rem; | ||
padding: 1.5rem 1rem; | ||
|
||
box-shadow: 0px 0px 20px 2px rgba(64, 64, 64, 0.10); | ||
|
||
p { | ||
text-align: center; | ||
font-size: 0.75rem; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 1.25rem; | ||
img { | ||
width: 100%; | ||
} | ||
|
||
.blocks { | ||
@apply flex bg-white-100; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 0.875rem 2.5rem; | ||
|
||
.block { | ||
@apply flex flex-col; | ||
align-items: flex-start; | ||
gap: 0.625rem; | ||
|
||
p { | ||
max-width: 20.375rem; | ||
} | ||
|
||
.block-tag { | ||
@apply bg-blue-100; | ||
padding: 0.25rem; | ||
justify-content: center; | ||
align-items: center; | ||
border-radius: 0.125rem; | ||
} | ||
|
||
.block-image { | ||
@apply flex flex-row; | ||
gap: 1rem; | ||
|
||
img { | ||
height: 2rem; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
@media (max-width: 767px) { | ||
footer { | ||
@apply absolute; | ||
.divider { | ||
border: none; | ||
border-left: 1px solid #cce0f4; | ||
width: 1px; | ||
height: 2rem; | ||
} | ||
|
||
@media (max-width: 767px) { | ||
@apply relative; | ||
padding: 2.5rem 1rem; | ||
|
||
.blocks { | ||
@apply flex flex-col; | ||
gap: 1.5rem; | ||
|
||
.block { | ||
@apply flex; | ||
align-items: center; | ||
gap: 1rem; | ||
|
||
.block-image { | ||
@apply flex flex-col; | ||
} | ||
|
||
.block-text { | ||
text-align: center; | ||
} | ||
} | ||
|
||
.divider { | ||
border: none; | ||
border-top: 1px solid #cce0f4; | ||
width: 100%; | ||
height: 1px; | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.