Skip to content

Commit

Permalink
fixed prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MalibusParty committed Feb 13, 2024
1 parent c9d8693 commit 2f12225
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/Resources/src/components/dashboard/EventData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
:size="20"
/>
</BannerSpacer>
<div
class="flex w-full flex-col items-center px-[15px] min-[380px]:flex-row"
>
<span class="inline-block grow self-start break-words text-[12px] font-bold leading-[20px] tracking-[0.5px] text-primary-1 max-[380px]:basis-9/12 min-[380px]:self-center min-[380px]:text-note">
<div class="flex w-full flex-col items-center px-[15px] min-[380px]:flex-row">
<span
class="inline-block grow self-start break-words text-[12px] font-bold leading-[20px] tracking-[0.5px] text-primary-1 max-[380px]:basis-9/12 min-[380px]:self-center min-[380px]:text-note"
>
{{ getEventById(day.event.eventId)?.title }}
</span>
<div class="flex w-fit flex-row items-center gap-1 self-end justify-self-end max-[380px]:basis-3/12">
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/src/components/dashboard/MealData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ watch(
);
const mealCSS = computed(() => {
let css = 'flex content-center rounded-md h-[30px] xl:h-[20px] '
let css = 'flex content-center rounded-md h-[30px] xl:h-[20px] ';
switch (meal.mealState) {
case 'disabled':
case 'offerable':
Expand Down
4 changes: 3 additions & 1 deletion src/Resources/src/components/dashboard/VariationsData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
>
<OfferPopover v-if="openPopover" />
</Transition>
<div class="text-align-last flex flex-auto basis-1/12 flex-row justify-end gap-1 min-[380px]:flex-row min-[380px]:items-center">
<div
class="text-align-last flex flex-auto basis-1/12 flex-row justify-end gap-1 min-[380px]:flex-row min-[380px]:items-center"
>
<PriceTag
class="align-center my-auto flex"
:price="variation.price"
Expand Down

0 comments on commit 2f12225

Please sign in to comment.