Skip to content

Commit 054b065

Browse files
HassanZahirniagithub-actions[bot]
authored andcommitted
chore: fix code style
1 parent e9b63d5 commit 054b065

File tree

13 files changed

+31
-35
lines changed

13 files changed

+31
-35
lines changed

docs/src/styles/fonts.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
display: swap;
6060
src: url(../fonts/jet-brains-mono/sjetbrainsmonov13tdby2o-fleeny0fzhsfku5wu4zr3e-bx0pnt8rd8ykxtolotk6othhva.woff)
6161
format('woff');
62-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
63-
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
64-
U+2215, U+FEFF, U+FFFD;
62+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
63+
U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
64+
U+2212, U+2215, U+FEFF, U+FFFD;
6565
}

resources/css/torchlight.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ pre.torchlight .summary-caret {
2424
}
2525

2626
.torchlight.has-focus-lines .line:not(.line-focus) {
27-
transition: filter 0.35s, opacity 0.35s;
27+
transition:
28+
filter 0.35s,
29+
opacity 0.35s;
2830
filter: blur(0.095rem);
2931
opacity: 0.65;
3032
}

resources/views/components/articles/hero.blade.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<div
2-
class="mx-auto w-full max-w-8xl px-10 pt-20"
3-
>
1+
<div class="mx-auto w-full max-w-8xl px-10 pt-20">
42
<div
53
class="relative flex max-w-screen-lg items-start justify-center gap-10 md:gap-20 min-[840px]:justify-between"
64
>

resources/views/components/articles/list.blade.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,13 @@ class="relative z-20 w-16 text-center transition duration-300"
153153
class="relative z-20 flex w-20 items-center gap-2 text-center transition duration-300"
154154
:class="{
155155
'cursor-pointer text-evening/70 hover:text-evening': selectedType !== @js($type['slug']),
156-
@js(match ($type['color']) {
157-
'amber' => 'text-amber-600',
158-
'blue' => 'text-blue-600',
159-
'violet' => 'text-violet-600',
160-
}): selectedType === @js($type['slug']),
156+
@js(
157+
match ($type['color']) {
158+
'amber' => 'text-amber-600',
159+
'blue' => 'text-blue-600',
160+
'violet' => 'text-violet-600',
161+
}
162+
): selectedType === @js($type['slug']),
161163
}"
162164
>
163165
{!! $type['icon'] !!}

resources/views/components/footer.blade.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<footer
2-
class="mx-auto w-full max-w-screen-lg space-y-24 px-5 pt-24"
3-
>
1+
<footer class="mx-auto w-full max-w-screen-lg space-y-24 px-5 pt-24">
42
<div class="mx-auto grid w-full">
53
<div
64
class="col-span-full flex flex-wrap justify-around gap-12 text-dolphin"

resources/views/components/home/packages.blade.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<div
2-
class="mx-auto w-full max-w-screen-lg px-5 pt-20"
3-
>
1+
<div class="mx-auto w-full max-w-screen-lg px-5 pt-20">
42
<div
53
x-data
64
x-init="

resources/views/components/home/sponsors.blade.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<section
2-
class="mx-auto w-full max-w-screen-lg px-5 pt-40"
3-
>
1+
<section class="mx-auto w-full max-w-screen-lg px-5 pt-40">
42
<div
53
x-data
64
x-ref="sponsors_section"

resources/views/components/layouts/app.blade.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ class="h-auto w-32"
124124
<div
125125
@class([
126126
'transition duration-300',
127-
'group-hover/sidebar-link:translate-x-1' => ! request()->routeIs('articles*'),
127+
'group-hover/sidebar-link:translate-x-1' => ! request()->routeIs(
128+
'articles*',
129+
),
128130
])
129131
>
130132
Community
@@ -143,7 +145,9 @@ class="h-auto w-32"
143145
<div
144146
@class([
145147
'transition duration-300',
146-
'group-hover/sidebar-link:translate-x-1' => ! request()->routeIs('consulting*'),
148+
'group-hover/sidebar-link:translate-x-1' => ! request()->routeIs(
149+
'consulting*',
150+
),
147151
])
148152
>
149153
Consulting

resources/views/components/plugins/hero.blade.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<div
2-
class="mx-auto w-full max-w-8xl px-10 pt-20"
3-
>
1+
<div class="mx-auto w-full max-w-8xl px-10 pt-20">
42
<div
53
class="relative flex max-w-screen-lg items-start gap-10 md:gap-20 xl:justify-between"
64
>

resources/views/components/sunset.blade.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<div
2-
class="mx-auto w-full max-w-screen-lg pt-60"
3-
>
1+
<div class="mx-auto w-full max-w-screen-lg pt-60">
42
<div
53
x-data
64
x-ref="sunset_section"

0 commit comments

Comments
 (0)