Skip to content

Commit 9ba7bf7

Browse files
authored
fix external links (#399)
1 parent b064377 commit 9ba7bf7

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 1 deletion
Loading

apps/svelte.dev/src/lib/icons/discord-white.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

apps/svelte.dev/src/routes/+layout.svelte

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
background: no-repeat 50% 50%;
8484
background-size: calc(100% - 1rem) auto;
8585
padding: 0 0.5rem;
86-
opacity: 0.6;
86+
height: 100%;
8787
8888
:global(.dark) & {
8989
opacity: 0.8;
@@ -103,19 +103,19 @@
103103
104104
[data-icon='discord'] {
105105
width: 3.4rem;
106-
background-image: url($lib/icons/discord-black.svg);
106+
background-image: url($lib/icons/discord-light.svg);
107107
108108
:global(.dark) & {
109-
background-image: url($lib/icons/discord-white.svg);
109+
background-image: url($lib/icons/discord-dark.svg);
110110
}
111111
}
112112
113113
[data-icon='github'] {
114114
width: 3rem;
115-
background-image: url($lib/icons/github-black.svg);
115+
background-image: url($lib/icons/github-light.svg);
116116
117117
:global(.dark) & {
118-
background-image: url($lib/icons/github-white.svg);
118+
background-image: url($lib/icons/github-dark.svg);
119119
}
120120
}
121121
}

0 commit comments

Comments
 (0)