Skip to content

Commit 014aef5

Browse files
committed
003-01 Download footer assets from Figma
1 parent b59a8d5 commit 014aef5

7 files changed

Lines changed: 41 additions & 4 deletions

File tree

docs/delivery/003/003-01.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ Download the social media icons (Facebook, X, Instagram) as SVGs from the Figma
88

99
## Status History
1010

11-
| Timestamp | Event Type | From Status | To Status | Details | User |
12-
| ------------------- | ---------- | ----------- | --------- | ----------------- | --------- |
13-
| 2025-07-11 16:29:53 | Created | N/A | Proposed | Task file created | AICopilot |
11+
| Timestamp | Event Type | From Status | To Status | Details | User |
12+
| ------------------- | ------------- | ----------- | ----------- | -------------------------- | --------- |
13+
| 2025-07-11 16:29:53 | Created | N/A | Proposed | Task file created | AICopilot |
14+
| 2025-07-11 16:33:17 | Status Change | Proposed | In Progress | Work started on task | AICopilot |
15+
| 2025-07-11 16:40:18 | Status Change | In Progress | Review | Task ready for review | AICopilot |
16+
| 2025-07-11 16:41:00 | Status Change | Review | Done | Task approved and complete | mgoho |
1417

1518
## Requirements
1619

docs/delivery/003/tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This document lists all tasks associated with PBI 003.
88

99
| Task ID | Name | Status | Description |
1010
| :------ | :----------------------------------------------- | :------- | :-------------------------------------------------------------------------------------------------- |
11-
| 003-01 | [Download footer assets from Figma](./003-01.md) | Proposed | Download the social media icons (Facebook, X, Instagram) as SVGs. |
11+
| 003-01 | [Download footer assets from Figma](./003-01.md) | Done | Download the social media icons (Facebook, X, Instagram) as SVGs. |
1212
| 003-02 | [Update footer HTML structure](./003-02.md) | Proposed | Replace the content of `hugo/layouts/partials/footer.html` with the new structure from Figma. |
1313
| 003-03 | [Create and style footer SCSS](./003-03.md) | Proposed | Create and style `hugo/assets/scss/footer.scss`, and import it into the main stylesheet. |
1414
| 003-04 | [Ensure footer is responsive](./003-04.md) | Proposed | Add container queries to ensure the footer is responsive. |

hugo/assets/scss/footer.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.footer {
2+
--icon-color: var(
3+
--color-primary,
4+
#1b5665
5+
); // Use your color token or fallback
6+
}
7+
8+
.footer-icon,
9+
.footer svg {
10+
color: var(--icon-color);
11+
width: 2rem;
12+
height: 2rem;
13+
display: inline-block;
14+
vertical-align: middle;
15+
}

hugo/assets/scss/styles.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
@use "typography";
44
@use "spacing";
55
@use "header";
6+
@use "footer";
67

78
// Modern, intrinsic container
89
:root {
Lines changed: 6 additions & 0 deletions
Loading
Lines changed: 6 additions & 0 deletions
Loading

hugo/static/assets/icons/x.svg

Lines changed: 6 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)