mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
Merge branch 'dev' into project-config-to-json
This commit is contained in:
commit
44eecf6bbc
@ -250,7 +250,6 @@ export function GlobeSection({ countryData, totalUsers, children }: {countryData
|
||||
className='absolute top-0 right-0 bottom-0 backdrop-blur-md'
|
||||
style={{
|
||||
left: ((globeContainerSize?.width ?? 0) - (sectionContainerSize?.width ?? 0)) / 2 + (globeWindowSize?.width ?? 0),
|
||||
zIndex: -1,
|
||||
}}
|
||||
|
||||
onMouseMove={() => {
|
||||
|
||||
@ -10,7 +10,7 @@ export function ProjectCard({ project }: { project: AdminProject }) {
|
||||
|
||||
return (
|
||||
<Link href={urlString`/projects/${project.id}`}>
|
||||
<Card className='flex flex-col justify-between'>
|
||||
<Card className='flex flex-col justify-between h-full'>
|
||||
<CardHeader>
|
||||
<CardTitle className="normal-case truncate">{project.displayName}</CardTitle>
|
||||
<CardDescription>{project.description}</CardDescription>
|
||||
|
||||
@ -66,6 +66,7 @@ export function VersionAlerter({ severeOnly }: { severeOnly: boolean }) {
|
||||
whiteSpace: "pre-wrap",
|
||||
maxHeight: "110px",
|
||||
overflow: "auto",
|
||||
zIndex: 5,
|
||||
}}>
|
||||
{versionCheckResult && (enableNonSevereVersionCheck || versionCheckResult.severe) && versionCheckResult.error}
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user