Skip to content

Commit

Permalink
✨ feat: add license ui (#12)
Browse files Browse the repository at this point in the history
* 🐛 fix: update env var name

* 🐛 fix: update folder name

* 🐛 fix: update probot to esm

* ✨ feat: add basic license get page

* 🚧 wip: add base ui

* ✨ feat: add license ui

---------

Co-authored-by: Dorian Portillo <wheresdorian@gmail.com>
  • Loading branch information
megasanjay and slugb0t authored May 1, 2024
1 parent 5b66ff7 commit 3b4bf89
Show file tree
Hide file tree
Showing 19 changed files with 12,230 additions and 3,638 deletions.
9,685 changes: 6,405 additions & 3,280 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

5,401 changes: 5,401 additions & 0 deletions ui/assets/data/licenses.json

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions ui/components/spinner/SpinnerOne.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<template>
<span class="loader"></span>
</template>

<style scoped>
.loader {
width: 48px;
height: 48px;
border: 2px solid #fff;
border-radius: 50%;
display: inline-block;
position: relative;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
.loader::after,
.loader::before {
content: "";
box-sizing: border-box;
position: absolute;
left: 0;
top: 0;
background: #ff3d00;
width: 6px;
height: 6px;
transform: translate(150%, 150%);
border-radius: 50%;
}
.loader::before {
left: auto;
top: auto;
right: 0;
bottom: 0;
transform: translate(-150%, -150%);
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
5 changes: 5 additions & 0 deletions ui/components/transition/TransitionFade.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<transition name="fade" mode="out-in" appear>
<slot></slot>
</transition>
</template>
1 change: 0 additions & 1 deletion ui/content/docs/_dir.yml

This file was deleted.

11 changes: 0 additions & 11 deletions ui/content/docs/index.md

This file was deleted.

4 changes: 2 additions & 2 deletions ui/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,12 @@ const devMode = process.env.NODE_ENV === "development";

<nav class="flex flex-col gap-6">
<a
href="codefair.html"
href="/codefair"
class="text-lg font-bold text-gray-600 transition duration-100 hover:text-indigo-500 active:text-indigo-700"
>About</a
>
<a
href="fairsoftware.html"
href="/fairsoftware"
class="text-lg font-bold text-gray-600 transition duration-100 hover:text-indigo-500 active:text-indigo-700"
>FAIR Software</a
>
Expand Down
315 changes: 0 additions & 315 deletions ui/layouts/public.vue

This file was deleted.

Loading

0 comments on commit 3b4bf89

Please sign in to comment.