-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the ability to configure footer links. BREAKING CHANGE: SHOW_ACCESSIBILITY_PAGE is replaced with the ACCESSIBILITY_URL config. --------- Co-authored-by: Wassaf-Shahzad <[email protected]> Co-authored-by: Arslan Ashraf <[email protected]>
- Loading branch information
1 parent
64fc8ad
commit ecc5474
Showing
10 changed files
with
420 additions
and
26 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
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
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,5 +1,64 @@ | ||
$gray-footer: #fcfcfc !default; | ||
$link-blue: #006daa; | ||
|
||
.footer { | ||
background-color: $gray-footer; | ||
|
||
.copyright-col { | ||
display: flex; | ||
flex-direction: column; | ||
padding-left: 20px; | ||
padding-right: 20px; | ||
|
||
.trademark-text { | ||
color: #707070 !important; | ||
font-size: 87.5%; | ||
font-weight: 400; | ||
} | ||
} | ||
} | ||
|
||
.footer-sub-nav { | ||
padding: 0; | ||
margin: 0 0 5px; | ||
list-style: none; | ||
font-size: 15px; | ||
line-height: 20px; | ||
|
||
@include media-breakpoint-down(md) { | ||
text-align: left; | ||
} | ||
|
||
@include media-breakpoint-up(md) { | ||
margin: 0; | ||
} | ||
|
||
li { | ||
display: inline-block; | ||
vertical-align: top; | ||
margin: 0; | ||
|
||
@include media-breakpoint-down(md) { | ||
display: block; | ||
margin: 0; | ||
padding: 0 0 7px; | ||
|
||
&::before { | ||
display: none; | ||
} | ||
} | ||
|
||
&::before { | ||
content: "-"; | ||
padding-left: 5px; | ||
padding-right: 5px; | ||
color: $link-blue | ||
} | ||
|
||
&:first-child { | ||
&::before { | ||
display: none; | ||
} | ||
} | ||
} | ||
} |
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
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
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
Oops, something went wrong.