Skip to content
Open

qa pass #5738

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/frontend/src/pages/hosting/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,7 @@ import {
injectModrinthClient,
injectNotificationManager,
IntlFormatted,
LoaderIcon,
ModrinthServersPurchaseModal,
useFormatPrice,
useVIntl,
Expand All @@ -652,7 +653,6 @@ import { useQuery } from '@tanstack/vue-query'
import { computed } from 'vue'

import OptionGroup from '~/components/ui/OptionGroup.vue'
import { LoaderIcon } from '@modrinth/ui/src/components/servers/icons'
import MedalPlanPromotion from '~/components/ui/servers/marketing/MedalPlanPromotion.vue'
import ServerPlanSelector from '~/components/ui/servers/marketing/ServerPlanSelector.vue'
import { products } from '~/generated/state.json'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="flex gap-8 items-center justify-center py-10">
<div class="grid grid-cols-2 gap-8 items-center justify-center py-10 max-w-[760px]">
<!-- Left column -->
<div class="flex flex-col gap-8 items-start pr-8 shrink-0 w-[380px]">
<div class="flex flex-col gap-8 items-start pr-8 shrink-0">
<!-- Heading -->
<div class="flex flex-col gap-2 items-start w-[300px]">
<p class="text-sm text-secondary">{{ formatMessage(messages.modrinthHostingLabel) }}</p>
Expand Down Expand Up @@ -65,7 +65,7 @@
</div>

<!-- CTA section -->
<div class="flex flex-col gap-6 items-start w-[300px]">
<div class="flex flex-col gap-6 items-start">
<div class="flex flex-col gap-3 items-start">
<ButtonStyled color="brand">
<button @click="onClickNewServer?.()">
Expand Down Expand Up @@ -104,7 +104,7 @@

<!-- Right column - mod icon grid -->
<div
class="relative flex h-[617px] w-[380px] shrink-0 items-center justify-center overflow-hidden rounded-[40px] pointer-events-none select-none [mask-image:linear-gradient(to_bottom,black_0%,black_35%,transparent_100%)] [-webkit-mask-image:linear-gradient(to_bottom,black_0%,black_35%,transparent_100%)]"
class="relative flex h-[617px] shrink-0 items-center justify-center overflow-hidden rounded-[40px] pointer-events-none select-none [mask-image:linear-gradient(to_bottom,black_0%,black_35%,transparent_100%)] [-webkit-mask-image:linear-gradient(to_bottom,black_0%,black_35%,transparent_100%)]"
>
<div class="rotate-[15deg]">
<div class="flex flex-col gap-4">
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/stories/servers/ServerListing.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const Provisioning: Story = {
args: {
...baseServer,
name: 'My New Server',
status: 'installing',
isProvisioning: true,
},
}

Expand Down
Loading