File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<template >
4
4
<div
5
- class =" mx-auto my-[5rem] flex w-screen max-w-screen-xl flex-1 flex-row items-center justify-center max-md:my-[2rem] max-md:mt-4 max-md:w-screen max-md:flex-col"
5
+ class =" mx-auto my-[5rem] flex w-full max-w-screen-xl flex-1 flex-row items-center justify-center max-md:my-[2rem] max-md:mt-4 max-md:w-full max-md:flex-col"
6
6
>
7
- <div class =" w-screen max-w-screen-xl text-white max-md:flex max-md:flex-col" >
7
+ <div class =" w-full max-w-screen-xl text-white max-md:flex max-md:flex-col max-xl:ml-4 max-md:ml-0 " >
8
8
<h1 class =" py-2 text-left text-5xl font-semibold max-md:py-0 max-md:text-center max-md:text-2xl" >
9
9
Testing.
10
10
</h1 >
13
13
>
14
14
Simplified.
15
15
</h2 >
16
- <p class =" text-md mx-lg:px-6 py-2 pr-20 font-medium max-lg:w-screen max-lg:pr-0 max-md:text-center" >
16
+ <p class =" text-md mx-lg:px-6 py-2 pr-20 font-medium max-lg:w-full max-lg:pr-0 max-md:text-center" >
17
17
Mockbukkit makes unit testing of Paper Plugins easier by providing Mocks for common features
18
18
</p >
19
19
<div class =" mt-3 flex flex-row items-center justify-start max-md:flex-col max-md:justify-center" >
41
41
</a >
42
42
</div >
43
43
</div >
44
- <div class =" flex w-screen max-w-screen-xl justify-end" >
44
+ <div class =" flex w-full max-w-screen-xl justify-end" >
45
45
<img src =" ~/assets/minecraft-trees.jpg" alt =" test" class =" w-11/12 rounded-2xl max-md:mx-auto max-md:mt-5" />
46
46
</div >
47
47
</div >
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const footer_categories = [
55
55
56
56
<template >
57
57
<div class =" mx-auto flex max-w-screen-xl flex-col divide-y divide-neutral-500" >
58
- <div class =" mx-auto flex max-w-screen-xl flex-row max-md:flex-col" >
58
+ <div class =" flex max-w-screen-xl flex-row max-md:flex-col justify-between " >
59
59
<FooterCategory
60
60
v-for =" category in footer_categories"
61
61
:title =" category.title"
@@ -66,10 +66,10 @@ const footer_categories = [
66
66
<img
67
67
src =" ../../assets/logo.png"
68
68
alt =" Full Logo"
69
- class =" h-auto w-1/6 max-md:mx-auto max-md:my-4 max-md:w-2/3"
69
+ class =" h-auto w-1/6 max-md:mx-auto max-md:my-4 max-md:w-2/3 max-xl:ml-4 "
70
70
/>
71
71
<div >
72
- <p class =" text-sm text-neutral-400 max-md:text-center" >
72
+ <p class =" text-sm text-neutral-400 max-md:text-center max-xl:mr-4 " >
73
73
© 2024 The Mockbukkit Team.
74
74
</p >
75
75
</div >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const props = defineProps({
20
20
</script >
21
21
22
22
<template >
23
- <div class =" mx -40 my-8 text-center max-md:mx-auto max-md:my-2" >
23
+ <div class =" w -40 my-8 text-center max-md:mx-auto max-md:my-2" >
24
24
<h2 class =" my-5 font-bold text-white" >{{ title }}</h2 >
25
25
<ul >
26
26
<li v-for =" link in links" :key =" link.name" >
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const props = defineProps({
19
19
20
20
<template >
21
21
<div
22
- class =" flex flex-col rounded-lg bg-gradient-to-b from-green-800 to-green-700 pb-10 pt-3 shadow-xl transition duration-200 ease-in-out hover:scale-105 "
22
+ class =" flex flex-col rounded-lg bg-gradient-to-b from-green-800 to-green-700 pb-10 pt-3 shadow-xl transition duration-200 ease-in-out scale-95 hover:scale-100 "
23
23
>
24
24
<div class =" mt-3 flex flex-col items-center justify-center" >
25
25
<font-awesome-icon class =" mb-3 text-3xl text-white" :icon =" icon" />
Original file line number Diff line number Diff line change @@ -32,27 +32,27 @@ const loopCards = computed(() => {
32
32
</script >
33
33
34
34
<template >
35
- <div class =" my-8 flex w-screen flex-col bg-neutral-800 py-8" >
35
+ <div class =" my-8 flex w-full flex-col bg-neutral-800 py-8" >
36
36
<div class =" mx-auto flex flex-row" >
37
37
<h3 class =" font text-xl font-semibold text-white" >Make your development life</h3 >
38
38
<h3 class =" ml-1 text-xl font-semibold text-green-500" >easier.</h3 >
39
39
</div >
40
- <div class =" mx-auto my-8 flex max-w-screen-xl flex-row max-md :flex-col" >
40
+ <div class =" mx-auto my-8 flex max-w-screen-xl flex-row max-lg :flex-col" >
41
41
<HighlightCard
42
- class =" my-4 mr-4 flex-1 max-md :ml-4 "
42
+ class =" flex-1 my-2 mr-2 max-lg :ml-2 "
43
43
:icon =" cards[0].icon"
44
44
:title =" cards[0].title"
45
45
:text =" cards[0].text"
46
46
></HighlightCard >
47
47
<HighlightCard
48
48
v-for =" card in loopCards"
49
- class =" mx-4 my-4 flex-1 max-md: mx-4 "
49
+ class =" flex-1 my-2 mx-2 "
50
50
:icon =" card.icon"
51
51
:title =" card.title"
52
52
:text =" card.text"
53
53
></HighlightCard >
54
54
<HighlightCard
55
- class =" my-4 ml-4 flex-1 max-md :mr-4 "
55
+ class =" flex-1 my-2 ml-2 max-lg :mr-2 "
56
56
:icon =" cards[cards.length - 1].icon"
57
57
:title =" cards[cards.length - 1].title"
58
58
:text =" cards[cards.length - 1].text"
You can’t perform that action at this time.
0 commit comments