File tree Expand file tree Collapse file tree 4 files changed +19
-7
lines changed Expand file tree Collapse file tree 4 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 1
1
.footer {
2
2
background-color : var (--color-tertiary );
3
- padding : var (--size-fluid-1 ) var ( --size-fluid-3 ) ;
3
+ padding : var (--size-fluid-1 );
4
4
display : flex;
5
5
flex-direction : row;
6
6
flex-wrap : wrap;
17
17
18
18
.logo svg {
19
19
width : 150px ;
20
- }
21
-
22
- .logo svg g .letters {
23
- fill : var (--color-white );
20
+ fill : var (--color-gray );
24
21
}
25
22
26
23
.footer app-social-tray {
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import styles from "./social-tray.module.css";
2
2
import discordIcon from "../../assets/discord.svg?type=raw" ;
3
3
import githubIcon from "../../assets/github.svg?type=raw" ;
4
4
import twitterIcon from "../../assets/twitter-logo.svg?type=raw" ;
5
+ import blueskyIcon from "../../assets/bluesky.svg?type=raw" ;
5
6
6
7
export default class SocialTray extends HTMLElement {
7
8
connectedCallback ( ) {
@@ -18,6 +19,12 @@ export default class SocialTray extends HTMLElement {
18
19
${ discordIcon }
19
20
</a>
20
21
</li>
22
+
23
+ <li class="${ styles . socialIcon } ">
24
+ <a href="https://bsky.app/profile/projectevergreen.bsky.social" title="BlueSky">
25
+ ${ blueskyIcon }
26
+ </a>
27
+ </li>
21
28
22
29
<li class="${ styles . socialIcon } ">
23
30
<a href="https://twitter.com/PrjEvergreen" title="Twitter">
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ const ICONS = [
10
10
link : "/discord/" ,
11
11
title : "Discord" ,
12
12
} ,
13
+ {
14
+ link : "https://bsky.app/profile/projectevergreen.bsky.social" ,
15
+ title : "BlueSky" ,
16
+ } ,
13
17
{
14
18
link : "https://twitter.com/PrjEvergreen" ,
15
19
title : "Twitter" ,
@@ -37,8 +41,8 @@ describe("Components/Social Tray", () => {
37
41
const links = tray . querySelectorAll ( "ul li a" ) ;
38
42
const icons = tray . querySelectorAll ( "ul li a svg" ) ;
39
43
40
- expect ( links . length ) . to . equal ( 3 ) ;
41
- expect ( icons . length ) . to . equal ( 3 ) ;
44
+ expect ( links . length ) . to . equal ( 4 ) ;
45
+ expect ( icons . length ) . to . equal ( 4 ) ;
42
46
43
47
Array . from ( links ) . forEach ( ( link ) => {
44
48
const iconItem = ICONS . find ( ( icon ) => icon . title === link . getAttribute ( "title" ) ) ;
You can’t perform that action at this time.
0 commit comments