-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🐛 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
1 parent
5b66ff7
commit 3b4bf89
Showing
19 changed files
with
12,230 additions
and
3,638 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.