Skip to content
This repository has been archived by the owner on Jun 25, 2022. It is now read-only.

Commit

Permalink
feat(front-end): Add social media icons to the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosPavajeau committed Mar 22, 2021
1 parent b57ec22 commit 79445ce
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<section class="text-center">
<h1>Ecolplag S.A.S</h1>
</section>
<div class="row">
<div class="col-xs-12 col-md-4">
<div fxLayout="row wrap" fxLayout.lt-sm="column" fxLayoutGap="40px" fxLayoutAlign="flex-start">
<div fxFlex.xs="12" fxFlex.md="4">
<div class="footer-section">
<h2>Acerca de nuestra empresa</h2>
<ul>
Expand All @@ -17,7 +17,7 @@ <h2>Acerca de nuestra empresa</h2>
</ul>
</div>
</div>
<div class="col-xs-12 col-md-4">
<div fxFlex.xs="12" fxFlex.md="4">
<div class="footer-section">
<h2>Soporte al cliente</h2>
<ul>
Expand All @@ -28,7 +28,15 @@ <h2>Soporte al cliente</h2>
</div>
</div>
</div>
<section style="margin-top: 1rem" class="text-center">
<section class="text-center mt-3">
<a mat-icon-button class="footer-social-brand-item" href="https://www.facebook.com/" target="_blank">
<mat-icon>facebook</mat-icon>
</a>
<a mat-icon-button class="footer-social-brand-item" href="https://www.youtube.com/" target="_blank">
<mat-icon>smart_display</mat-icon>
</a>
</section>
<section class="text-center mt-3">
<span>
Ecolplag S.A.S. <span>&copy; {{ year }}</span> Todos los derechos
reservados.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.footer {
overflow: hidden;
padding: 20px 10px 10px;
padding-top: 30px;
padding: 30px 10px 10px;
background: #162250;
}

Expand Down Expand Up @@ -33,3 +32,7 @@ footer span {
text-decoration: none;
font-size: 12px;
}

.footer-social-brand-item {
padding: 0 0.75rem;
}

0 comments on commit 79445ce

Please sign in to comment.