-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathFooter.astro
More file actions
92 lines (82 loc) · 1.82 KB
/
Footer.astro
File metadata and controls
92 lines (82 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---
import ExternalLink from "../common/ExternalLink.astro";
import Icon from "../common/Icon.astro";
import { faHeart } from "@fortawesome/free-solid-svg-icons";
export interface Props {
class?: string;
}
const { class: className } = Astro.props;
---
<footer class={className}>
<span class="wordmark">LuaLS</span>
<div>
<h2>Contribute</h2>
<ul>
<li>
<ExternalLink url="https://github.com/LuaLS/lua-language-server/issues">
Report issue
</ExternalLink>
</li>
<li>
<a href="/wiki/contributing/">Contributing guide</a>
</li>
<li>
<ExternalLink
url="https://github.com/LuaLS/lua-language-server/issues/484"
>
Sponsor <Icon icon={faHeart} color="red" />
</ExternalLink>
</li>
</ul>
</div>
<div>
<h2>Help</h2>
<ul>
<li><a href="/wiki/faq/">FAQ</a></li>
<li>
<ExternalLink
url="https://github.com/LuaLS/lua-language-server/discussions"
>
Discuss
</ExternalLink>
</li>
<li><a href="/privacy/">Privacy</a></li>
</ul>
</div>
</footer>
<style lang="scss">
footer {
background-color: #020910;
padding: 1em 1em;
gap: 1em;
display: flex;
justify-content: space-evenly;
align-items: center;
text-align: center;
z-index: 20;
.wordmark {
font-size: 1.5em;
font-weight: 500;
}
& > div {
margin-bottom: auto;
h2 {
color: #dddddd;
font-size: 1.2em;
margin: 0px auto 0.5em 0px;
}
ul {
list-style: none;
color: #cccccc;
padding-left: 0px;
margin: 0.5em auto;
}
}
:global(a),
:global(.external-link),
:global(.external-link .icon) {
color: inherit;
font-weight: normal;
}
}
</style>