File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -824,7 +824,7 @@ var emojis = [
824
824
825
825
let waitTime = 80 ;
826
826
let emojiWait = 0 ;
827
- let prevEmoji = '' ;
827
+ let prevEmoji = emojis [ Math . floor ( Math . random ( ) * emojis . length ) ] ;
828
828
function returnRandomEmoji ( ) {
829
829
if ( emojiWait >= waitTime ) {
830
830
emojiWait = 0 ;
Original file line number Diff line number Diff line change 13
13
function counter (intervel , max , step ) {
14
14
let interval = setInterval (() => {
15
15
count = count + step > max ? max : count + step;
16
- console .log (count + ' ' + interval);
17
16
finalText = count .toString () + ' ' + returnRandomEmoji ();
18
17
if (count >= max) {
19
18
clearInterval (interval);
27
26
</script >
28
27
29
28
<div class =" dark:bg-[#070704] bg-[#EDEDDE]" >
30
- <div class =" flex flex-col h-screen items-center justify-center" >
31
- <a
29
+ <div class =" flex flex-col h-screen items-center justify-center bg-[#07070d] rounded-sm" >
30
+ <div class =" bg-[#4e6638] p-6 rounded-xl" >
31
+ <a
32
32
href =" https://github.com/RandomCoderOrg/ubuntu-on-android"
33
33
target =" _blank"
34
34
referrerpolicy =" no-referrer"
35
- class =" text-[#070704] dark:text-[#ededde] text-6xl hover:underline dark:decoration-[#705091 ] text-bold font-mono"
35
+ class =" text-[#070704] dark:text-[#ededde] text-4xl hover:underline dark:decoration-[#EDEDDE ] text-bold font-mono"
36
36
>UDROID Downloads</a
37
37
>
38
- <p class ="font-light font-mono text-3xl text-[#070704] dark:text-[#ededde]" >{finalText }</p >
38
+ <p class ="font-light text-center font-mono text-3xl text-[#070704] dark:text-[#ededde]" >{finalText }</p >
39
+ </div >
39
40
</div >
40
41
</div >
You can’t perform that action at this time.
0 commit comments