@@ -37,6 +37,10 @@ class="text-lg font-bold hover:text-gray-400">
37
37
transform =" scale(64)" />
38
38
</svg >
39
39
</a >
40
+
41
+ <a href =" https://discord.gg/4NFWBqMA8z" target =" _blank" >
42
+ <svg class =" w-6 h-6 fill-current" viewBox =" 0 -28.5 256 256" xmlns =" http://www.w3.org/2000/svg" ><path d =" M216.9 16.6A208.5 208.5 0 0 0 164 0c-2.2 4.1-4.9 9.6-6.7 14a194 194 0 0 0-58.6 0C97 9.6 94.2 4.1 92 0A207.8 207.8 0 0 0 39 16.6 221.5 221.5 0 0 0 1 165 211.2 211.2 0 0 0 66 198a161 161 0 0 0 13.8-22.8c-7.6-2.9-15-6.5-21.8-10.6l5.3-4.3a149.3 149.3 0 0 0 129.6 0c1.7 1.5 3.5 3 5.3 4.3a136 136 0 0 1-21.9 10.6c4 8 8.7 15.7 13.9 22.9a210.7 210.7 0 0 0 64.8-33.2c5.3-56.3-9-105.1-38-148.4ZM85.5 135.1c-12.7 0-23-11.8-23-26.2 0-14.4 10.1-26.2 23-26.2 12.8 0 23.2 11.8 23 26.2 0 14.4-10.2 26.2-23 26.2Zm85 0c-12.6 0-23-11.8-23-26.2 0-14.4 10.2-26.2 23-26.2 12.9 0 23.3 11.8 23 26.2 0 14.4-10.1 26.2-23 26.2Z" /></svg >
43
+ </a >
40
44
</div >
41
45
</header >
42
46
</div >
@@ -67,7 +71,7 @@ class="text-lg font-bold hover:text-gray-400">
67
71
</div >
68
72
</div >
69
73
70
- <div class =" mt-24 flex gap-4 mb-24" >
74
+ <div class =" mt-24 flex gap-0 md:gap- 4 mb-24" >
71
75
<div class =" relative flex-1" >
72
76
<div class =" p-0 sticky top-0 h-screen" id =" demo" >
73
77
<preview >
@@ -76,15 +80,15 @@ class="text-lg font-bold hover:text-gray-400">
76
80
</div >
77
81
</div >
78
82
79
- <div class =" w-1/2 md:w-1/3 xl:w-1/4 flex flex-col gap-4 md:gap-10 lg:gap-16" >
83
+ <div class =" w-40 md:w-1/3 xl:w-1/4 flex flex-col gap-4 md:gap-10 lg:gap-16" >
80
84
@foreach ($buttonGroups as $group => $data )
81
- <div class =" border p-10 rounded-xl bg-white hover:shadow-xl transition" id =" {{ $group } }" >
82
- <h3 class =" text-xl leading-none font-bold text-blue-800 tracking-tight mb-4" >
85
+ <div class =" border p-4 md:p-6 lg:p- 10 md: rounded-xl bg-white hover:shadow-xl transition" id =" {{ $group } }" >
86
+ <h3 class =" md: text-xl leading-none font-bold text-blue-800 tracking-tight mb-4" >
83
87
{{ $data [' title' ] ?? \Illuminate \Support \Str:: studly ($group ) } }
84
88
</h3 >
85
89
86
90
@if (isset ($data [' description' ]) )
87
- <p class =" text-gray-500 text-sm font-medium mb-6" >
91
+ <p class =" hidden md:block text-gray-500 text-sm font-medium mb-6" >
88
92
{{ $data [' description' ] } }
89
93
</p >
90
94
@endif
@@ -101,12 +105,12 @@ class="border bg-blue-100 hover:bg-blue-200 font-bold text-xs text-blue-800 px-3
101
105
<div >
102
106
@foreach ($data [' events' ] as $type => $buttons )
103
107
@if ($type !== ' common' )
104
- <h4 class =" text-xl leading-none font-extrabold text-blue-600 tracking-tight mt-6 mb-4" >
108
+ <h4 class =" md: text-xl leading-none font-extrabold text-blue-600 tracking-tight mt-6 mb-4" >
105
109
{{ \Illuminate \Support \Str:: studly ($type ) } }
106
110
</h4 >
107
111
@endif
108
112
109
- <div class =" flex flex-wrap gap-2 md:gap-3 lg:gap-4 text-sm" >
113
+ <div class =" overflow-hidden flex flex-wrap gap-2 md:gap-3 lg:gap-4 text-sm" >
110
114
@foreach ($buttons as $button )
111
115
<button-action
112
116
action =" {{ $group . ($type === ' common' ? ' ' : ' _' . $type ). ' :' . \Illuminate \Support \Str:: snake ($button ) } }" >
@@ -141,7 +145,7 @@ class="border bg-blue-100 hover:bg-blue-200 font-bold text-xs text-blue-800 px-3
141
145
142
146
143
147
<div class =" bg-gray-900 py-20 mt-24" >
144
- <div class =" max-w-screen-lg xl:max-w-screen-xl mx-auto" >
148
+ <div class =" max-w-screen-lg xl:max-w-screen-xl mx-auto px-10 " >
145
149
<h3 class =" text-3xl lg:text-5xl leading-none font-extrabold text-yellow-200 tracking-tight mb-8" >
146
150
How to run?
147
151
</h3 >
@@ -151,7 +155,7 @@ class="border bg-blue-100 hover:bg-blue-200 font-bold text-xs text-blue-800 px-3
151
155
</p >
152
156
153
157
<div class =" mb-10 flex" >
154
- <code class =" select-all cursor-pointer w-auto bg-gray-50 text-gray-800 font-semibold hover:text-gray-700 font-mono px-3 py-2 border border-gray-200 hover:border-blue-600 rounded-full transition-colors duration-200" >
158
+ <code class =" overflow-hidden select-all cursor-pointer w-auto bg-gray-50 text-gray-800 font-semibold hover:text-gray-700 font-mono px-3 py-2 border border-gray-200 hover:border-blue-600 rounded-full transition-colors duration-200 text-nowrap break-keep " >
155
159
docker run -p 8000:8000 -p 1025:1025 -p 9912:9912 -p 9913:9913 ghcr.io/buggregator/server:latest
156
160
</code >
157
161
</div >
@@ -165,13 +169,12 @@ class="border bg-gray-100 hover:bg-gary-200 font-bold text-gary-800 px-5 py-2 ro
165
169
166
170
<hr >
167
171
168
- <div class =" max-w-screen-lg xl:max-w-screen-xl mx-auto py-10 my-12" >
172
+ <div class =" max-w-screen-lg xl:max-w-screen-xl mx-auto py-10 my-12 px-10 " >
169
173
<div >
170
174
<h3 class =" text-3xl lg:text-5xl leading-none font-extrabold text-blue-800 tracking-tight mb-8" >
171
175
Features
172
176
</h3 >
173
177
174
-
175
178
<div class =" border p-8 rounded-lg flex flex-col gap-4 hover:shadow-xl transition mb-6 bg-[url('/images/bg.jpg')]" >
176
179
<div >
177
180
<a href =" https://docs.buggregator.dev/config/sso.html" target =" _blank"
@@ -267,7 +270,7 @@ class="border bg-green-100 hover:bg-green-200 font-bold text-green-800 px-5 py-2
267
270
268
271
269
272
<div class =" bg-white py-12" >
270
- <div class =" max-w-screen-lg xl:max-w-screen-xl mx-auto my-12" >
273
+ <div class =" max-w-screen-lg xl:max-w-screen-xl mx-auto my-12 px-10 " >
271
274
<h3 class =" text-3xl lg:text-5xl leading-none font-extrabold text-blue-800 tracking-tight mb-8" >
272
275
Buggregator Trap
273
276
</h3 >
@@ -279,7 +282,7 @@ class="border bg-green-100 hover:bg-green-200 font-bold text-green-800 px-5 py-2
279
282
</p >
280
283
281
284
<div class =" mb-6 flex" >
282
- <code class =" select-all cursor-pointer w-auto bg-gray-50 text-gray-800 font-semibold hover:text-gray-700 font-mono px-3 py-2 border border-gray-200 hover:border-blue-600 rounded-full transition-colors duration-200" >
285
+ <code class =" overflow-hidden select-all cursor-pointer w-auto bg-gray-50 text-gray-800 font-semibold hover:text-gray-700 font-mono px-3 py-2 border border-gray-200 hover:border-blue-600 rounded-full transition-colors duration-200 text-nowrap break-keep " >
283
286
composer require --dev buggregator/trap -W
284
287
</code >
285
288
</div >
@@ -362,7 +365,7 @@ class="w-14"
362
365
},
363
366
template: `
364
367
<div class="flex flex-col items-center h-full">
365
- <div :class="deviceClass" class=" shadow-xl">
368
+ <div :class="deviceClass" class="shadow-xl md:rounded -xl">
366
369
<div>
367
370
<slot></slot>
368
371
</div>
0 commit comments