style(ui): improve layout and responsiveness of tuition class page
This commit adjusts the styling on the 'Middle/High School Tuition Class' page to enhance its appearance and readability, particularly on mobile devices. - Implemented responsive padding for the main page and content container. - Justified the main text block for better readability. - Centered the student name badges. - Added configuration files for the `repomix` project analysis tool.
This commit is contained in:
10
.repomixignore
Normal file
10
.repomixignore
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# Add patterns to ignore here, one per line
|
||||||
|
# Example:
|
||||||
|
# *.log
|
||||||
|
# tmp/
|
||||||
|
pnpm-workspace.yaml
|
||||||
|
public/
|
||||||
|
app/assets/
|
||||||
|
docs/
|
||||||
|
*.md
|
||||||
|
countries.ts
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<UPage class="bg-gradient-to-br from-amber-50 to-amber-100 p-8">
|
<UPage class="bg-gradient-to-br from-amber-50 to-amber-100 p-2 md:p-8">
|
||||||
<UPageHero title="特殊校友" description="中补班 (1956年): 一封迟来的貼文" />
|
<UPageHero title="特殊校友" description="中补班 (1956年): 一封迟来的貼文" />
|
||||||
<UContainer>
|
<UContainer>
|
||||||
<div class="flex justify-center items-center">
|
<div class="flex justify-center items-center">
|
||||||
<div
|
<div
|
||||||
class="relative max-w-2xl paper-texture bg-amber-50 shadow-md border border-amber-200 rounded-xl p-12 font-letter text-gray-800 leading-relaxed handwritten tracking-wide"
|
class="p-4 md:p-12 text-justify relative max-w-2xl paper-texture bg-amber-50 shadow-md border border-amber-200 rounded-xl font-letter text-gray-800 leading-relaxed handwritten tracking-wide"
|
||||||
>
|
>
|
||||||
<UModal
|
<UModal
|
||||||
v-model:open="imagePopup"
|
v-model:open="imagePopup"
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
中补班同学名册就記忆如下:马文钦提供
|
中补班同学名册就記忆如下:马文钦提供
|
||||||
</p>
|
</p>
|
||||||
<UCard>
|
<UCard>
|
||||||
<div class="space-x-4 space-y-2">
|
<div class="space-x-4 space-y-2 text-center">
|
||||||
<UBadge
|
<UBadge
|
||||||
v-for="name in schoolMates"
|
v-for="name in schoolMates"
|
||||||
size="xl"
|
size="xl"
|
||||||
|
|||||||
42
repomix.config.json
Normal file
42
repomix.config.json
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://repomix.com/schemas/latest/schema.json",
|
||||||
|
"input": {
|
||||||
|
"maxFileSize": 52428800
|
||||||
|
},
|
||||||
|
"output": {
|
||||||
|
"filePath": "repomix-output.xml",
|
||||||
|
"style": "xml",
|
||||||
|
"parsableStyle": false,
|
||||||
|
"fileSummary": true,
|
||||||
|
"directoryStructure": true,
|
||||||
|
"files": true,
|
||||||
|
"removeComments": false,
|
||||||
|
"removeEmptyLines": false,
|
||||||
|
"compress": false,
|
||||||
|
"topFilesLength": 5,
|
||||||
|
"showLineNumbers": false,
|
||||||
|
"truncateBase64": false,
|
||||||
|
"copyToClipboard": false,
|
||||||
|
"includeFullDirectoryStructure": false,
|
||||||
|
"tokenCountTree": false,
|
||||||
|
"git": {
|
||||||
|
"sortByChanges": true,
|
||||||
|
"sortByChangesMaxCommits": 100,
|
||||||
|
"includeDiffs": false,
|
||||||
|
"includeLogs": false,
|
||||||
|
"includeLogsCount": 50
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"include": [],
|
||||||
|
"ignore": {
|
||||||
|
"useGitignore": true,
|
||||||
|
"useDefaultPatterns": true,
|
||||||
|
"customPatterns": []
|
||||||
|
},
|
||||||
|
"security": {
|
||||||
|
"enableSecurityCheck": true
|
||||||
|
},
|
||||||
|
"tokenCount": {
|
||||||
|
"encoding": "o200k_base"
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user