#NS 8 #8
No reviewers
Labels
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
GamBar/nail-studio!8
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "#NS-8"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Great work, lets do some code cleanup
@ -86,3 +90,14 @@--txtSecondary: theme('colors.neutral.300');Do we need these comments?
@ -9,0 +11,4 @@import 'swiper/css/free-mode';import 'swiper/css/pagination';import 'swiper/css/navigation';added space?
does this get rid of the padding on bigger screens? if it does, keep the padding please with sm:p-2 or md:p-2
@ -1,5 +1,5 @@<script setup>nit pick, can we format this better 😅
maybe run the linter command, it should pretty-up the code
@ -27,24 +27,29 @@ const arrow = computed(() => (open.value ? 'keyboard_arrow_up' : 'keyboard_arrow:key="navigation.name"can you try if just "clickable" works? now that you added types to the icon it should work auto-magically ;)
@ -0,0 +1,37 @@<script setup>Rename component to "artists" or something, "Swiper" suggests this is just a general swiper component
You can use tailwind's line clamp to make a responsive truncation, read more about it here
https://tailwindcss.com/docs/line-clamp
can we import these on an app level since swiper will be used in many places troughout the app
can we have an Artist Card component? we might want to reuse it later for out booking flow
Much better, good job