Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit 656b077

Browse files
authored
update with new brand (#5)
1 parent 36e357e commit 656b077

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

01-Login/components/banner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function Banner() {
66
<a href="https://passage.id/" ><div className={styles.passageLogo}></div></a>
77
<div className={styles.headerText}>Passage + Next.js Example App</div>
88
<div className={styles.spacer}></div>
9-
<a href="https://passage.id/" ><span className={styles.text}>Go to Passage</span></a>
9+
<a href="https://passage.id/" className={styles.link}>Go to Passage</a>
1010
</div>
1111
);
1212
}

01-Login/styles/Banner.module.css

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
padding: 20px 30px;
33
display: flex;
44
align-items: center;
5-
background-color: #27417E;
5+
background-color: #282727;
66
color: white;
77
}
8-
.header-text {
8+
.headerText {
99
font-size: 24px;
10-
margin-left: 10px;
10+
margin: 0px 10px;
1111
}
1212

1313
.passageLogo {
14-
background-image: url('https://storage.googleapis.com/passage-docs/passage-logo.svg');
14+
background-image: url('https://storage.googleapis.com/passage-docs/passage-logo-dark.svg');
1515
background-repeat: no-repeat;
1616
width: 60px;
1717
height: 60px;
@@ -24,5 +24,6 @@
2424
.link {
2525
margin-left: 20px;
2626
color: white;
27+
text-decoration: underline;
2728
text-decoration-color: white;
2829
}

02-Login-With-Profile/components/banner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function Banner() {
66
<a href="https://passage.id/" ><div className={styles.passageLogo}></div></a>
77
<div className={styles.headerText}>Passage + Next.js Example App</div>
88
<div className={styles.spacer}></div>
9-
<a href="https://passage.id/" ><span className={styles.text}>Go to Passage</span></a>
9+
<a href="https://passage.id/" className={styles.link}>Go to Passage</a>
1010
</div>
1111
);
1212
}

02-Login-With-Profile/styles/Banner.module.css

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
padding: 20px 30px;
33
display: flex;
44
align-items: center;
5-
background-color: #27417E;
5+
background-color: #282727;
66
color: white;
77
}
8-
.header-text {
8+
.headerText {
99
font-size: 24px;
10-
margin-left: 10px;
10+
margin: 0px 10px;
1111
}
1212

1313
.passageLogo {
14-
background-image: url('https://storage.googleapis.com/passage-docs/passage-logo.svg');
14+
background-image: url('https://storage.googleapis.com/passage-docs/passage-logo-dark.svg');
1515
background-repeat: no-repeat;
1616
width: 60px;
1717
height: 60px;
@@ -24,5 +24,6 @@
2424
.link {
2525
margin-left: 20px;
2626
color: white;
27+
text-decoration: underline;
2728
text-decoration-color: white;
2829
}

0 commit comments

Comments
 (0)