Skip to content

Commit

Permalink
Merge pull request bagisto#9151 from jitendra-webkul/master
Browse files Browse the repository at this point in the history
Refactor tailwind classes
  • Loading branch information
jitendra-webkul authored Dec 14, 2023
2 parents 3b4c339 + 920e7ce commit 6006481
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="flex gap-4 mb-4 pt-2 border-b-2 max-sm:hidden dark:border-gray-800">
@foreach ($items as $key => $item)
<a href="{{ $item['url'] }}">
<div class="{{ $menu->getActive($item) ? "mb-[-1px] border-blue-600 border-b-2 transition" : '' }} pb-3.5 px-2.5 text-base font-medium text-gray-600 dark:text-gray-300 cursor-pointer">
<div class="{{ $menu->getActive($item) ? "-mb-px border-blue-600 border-b-2 transition" : '' }} pb-3.5 px-2.5 text-base font-medium text-gray-600 dark:text-gray-300 cursor-pointer">
@lang($item['name'])
</div>
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class="hidden"
<p @click="switchEditor('v-html-editor-theme', 1)">
<div
class="transition pb-3.5 px-2.5 text-base font-medium text-gray-600 dark:text-gray-300 cursor-pointer"
:class="{'mb-[-1px] border-b-2 border-blue-600': inittialEditor == 'v-html-editor-theme'}"
:class="{'-mb-px border-b-2 border-blue-600': inittialEditor == 'v-html-editor-theme'}"
>
@lang('admin::app.settings.themes.edit.html')
</div>
Expand All @@ -58,7 +58,7 @@ class="transition pb-3.5 px-2.5 text-base font-medium text-gray-600 dark:text-g
<p @click="switchEditor('v-css-editor-theme', 0);">
<div
class="transition pb-3.5 px-2.5 text-base font-medium text-gray-600 dark:text-gray-300 cursor-pointer"
:class="{'mb-[-1px] border-b-2 border-blue-600': inittialEditor == 'v-css-editor-theme'}"
:class="{'-mb-px border-b-2 border-blue-600': inittialEditor == 'v-css-editor-theme'}"
>
@lang('admin::app.settings.themes.edit.css')
</div>
Expand All @@ -68,7 +68,7 @@ class="transition pb-3.5 px-2.5 text-base font-medium text-gray-600 dark:text-g
<p @click="switchEditor('v-static-content-previewer', 0);">
<div
class="transition pb-3.5 px-2.5 text-base font-medium text-gray-600 dark:text-gray-300 cursor-pointer"
:class="{'mb-[-1px] border-b-2 border-blue-600': inittialEditor == 'v-static-content-previewer'}"
:class="{'-mb-px border-b-2 border-blue-600': inittialEditor == 'v-static-content-previewer'}"
>
@lang('admin::app.settings.themes.edit.preview')
</div>
Expand Down
1 change: 0 additions & 1 deletion public/themes/admin/default/build/assets/app-48cca2f3.css

This file was deleted.

1 change: 1 addition & 0 deletions public/themes/admin/default/build/assets/app-d855ccba.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/themes/admin/default/build/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"src/Resources/assets/css/app.css": {
"file": "assets/app-48cca2f3.css",
"file": "assets/app-d855ccba.css",
"isEntry": true,
"src": "src/Resources/assets/css/app.css"
},
Expand Down

0 comments on commit 6006481

Please sign in to comment.