Compare commits

...

5 Commits

Author SHA1 Message Date
Lee
4e60aea93a Merge pull request 'Update v0.1.9' (#6) from development into master
All checks were successful
Publish Docker Image / docker (push) Successful in 1m46s
Reviewed-on: #6
2023-07-13 04:32:57 +00:00
4b28645ab3 bump version
All checks were successful
Publish Docker Image / docker (push) Successful in 1m49s
2023-07-13 05:32:03 +01:00
69a7c00267 make the status indiator bigger
All checks were successful
Publish Docker Image / docker (push) Successful in 1m37s
2023-07-13 05:31:23 +01:00
ac3bb77438 below vv 2023-07-13 05:20:06 +01:00
114bc4efea move config to example config so locally using it isn't a pain 2023-07-13 05:19:56 +01:00
4 changed files with 5 additions and 2 deletions

3
.gitignore vendored

@ -143,3 +143,6 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# Config
config.json

@ -1,6 +1,6 @@
{
"name": "simple-links",
"version": "0.1.8",
"version": "0.1.9",
"private": false,
"scripts": {
"dev": "next dev",

@ -53,7 +53,7 @@ function LanyardComponent(props: { discord: any }) {
<div>
{hasLanyard && (
<div
className={`absolute bottom-2 right-2 w-4 h-4 rounded-full transition ${currentStatus}`}
className={`absolute bottom-2 right-2 w-5 h-5 rounded-full transition ${currentStatus}`}
/>
)}
</div>