mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-24 10:51:27 +00:00
fix responsive
This commit is contained in:
parent
32d66d584b
commit
07eb277419
1 changed files with 33 additions and 26 deletions
|
|
@ -1,39 +1,46 @@
|
|||
---
|
||||
import GenerateQR from "./GenerateQR.vue"
|
||||
import { SITE_TITLE, SITE_DESCRIPTION } from "../../consts"
|
||||
import BaseHead from "../../components/BaseHead.astro"
|
||||
|
||||
const { primaryTitle } = Astro.props
|
||||
const title = primaryTitle ? `${primaryTitle} - ${SITE_TITLE}` : SITE_TITLE;
|
||||
---
|
||||
|
||||
<html class="" lang="zh-CN" dir="ltr">
|
||||
<html class="js no-touch progressive-image no-reduced-motion progressive" lang="zh-CN" dir="ltr">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<BaseHead title={title} description={SITE_DESCRIPTION} />
|
||||
</head>
|
||||
<body>
|
||||
<div class="bg-[#f5f5f7] flex flex-col sm:flex-row items-center h-screen justify-center gap-8 p-8">
|
||||
<div
|
||||
class=" sm:w-auto"
|
||||
>
|
||||
<div class="flex items-center gap-2">
|
||||
<img
|
||||
src="https://oss.nbtca.space/CA-logo.svg"
|
||||
alt=""
|
||||
class="w-12 aspect-square"
|
||||
/>
|
||||
<div class="text-brand text-nowrap text-3xl">
|
||||
计算机协会
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-3xl md:text-4xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-500 to-blue-500 mt-3">
|
||||
2024 毕业典礼拍摄
|
||||
</div>
|
||||
<div class="sm:w-[40vw] mt-6 text-gray-600 lg:text-lg">
|
||||
<div>
|
||||
扫描右侧二维码来下载你的照片
|
||||
</div>
|
||||
<div>
|
||||
请在拍摄前确保你已经记下来当前页面的二维码,并且将该二维出示给摄影师
|
||||
<div class="bg-[#f5f5f7] w-full h-screen flex flex-col justify-between items-center">
|
||||
<div class=" flex flex-col sm:flex-row items-center h-full max-w-[1280px] justify-center gap-8 p-8">
|
||||
<div
|
||||
class=" sm:w-auto"
|
||||
>
|
||||
<div class="flex items-center gap-2">
|
||||
<img
|
||||
src="https://oss.nbtca.space/CA-logo.svg"
|
||||
alt=""
|
||||
class="w-12 aspect-square"
|
||||
/>
|
||||
<div class="text-brand text-nowrap text-3xl">
|
||||
计算机协会
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-3xl md:text-4xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-500 to-blue-500 mt-3">
|
||||
2024 毕业典礼拍摄
|
||||
</div>
|
||||
<div class="sm:w-[40vw] mt-6 text-gray-600 lg:text-lg">
|
||||
<div>
|
||||
扫描右侧二维码来下载你的照片
|
||||
</div>
|
||||
<div>
|
||||
请在拍摄前确保你已经记下来当前页面的二维码,并且将该二维出示给摄影师
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<GenerateQR client:load class="min-w-[50%]"></GenerateQR>
|
||||
</div>
|
||||
<GenerateQR client:load class="min-w-[50%]"></GenerateQR>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Reference in a new issue