We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4e0381 commit a4c6fe9Copy full SHA for a4c6fe9
src/components/MyComponent/index.tsx
@@ -33,6 +33,12 @@ export const MyComponent: FunctionComponent<MyProps> = ({ foo }) => {
33
</ul>
34
</section>
35
<MyOtherComponent baz={count} />
36
+ <footer>
37
+ <span>source code of this website:</span>{" "}
38
+ <a href="https://github.com/fullsoak/bun-examples.git">
39
+ https://github.com/fullsoak/deno-examples
40
+ </a>
41
+ </footer>
42
</>
43
);
44
};
src/components/Shared/styles.css
@@ -3,3 +3,11 @@ html, body {
3
padding: 0;
4
font-family: monospace;
5
}
6
+
7
+footer {
8
+ padding: 1em;
9
+ position: fixed;
10
+ bottom: 0;
11
+ background: white;
12
+ z-index: 1;
13
+}
0 commit comments