-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructured files and finetuning frontend (#11)
- Loading branch information
1 parent
525206b
commit 65ac86e
Showing
4 changed files
with
63 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
</x-rapidez::button.outline> | ||
</div> | ||
</product-compare> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<x-rapidez::button.primary | ||
class="absolute top-10 sm:top-14 size-10 sm:left-1/3 lg:left-1/4 xl:left-[20%] z-10 rounded-full !p-0" | ||
v-if="showLeft" | ||
v-on:click="navigate(currentSlide - 1)" | ||
> | ||
<x-heroicon-o-arrow-left stroke-width="2" class="text-white size-4"/> | ||
</x-rapidez::button.primary> | ||
|
||
<x-rapidez::button.primary | ||
class="absolute top-10 sm:top-14 right-0 size-10 flex z-10 rounded-full !p-0" | ||
v-if="showRight" | ||
v-on:click="navigate(currentSlide + 1)" | ||
> | ||
<x-heroicon-o-arrow-right stroke-width="2" class="text-white size-4"/> | ||
</x-rapidez::button.primary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<div class="flex flex-col gap-y-4 items-start"> | ||
<p>@lang('No products have been added to compare. Add products so you can compare them with each other.')</p> | ||
<x-rapidez::button.outline href="/"> | ||
@lang('Back to home') | ||
</x-rapidez::button.outline> | ||
</div> |