mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 20:59:05 +00:00
style: center no meetings message and remove background
- Change from Box to Flex with flex=1 for vertical centering - Remove gray background, border radius, and padding - Message now appears cleanly centered in available space - Maintains horizontal and vertical centering
This commit is contained in:
@@ -375,11 +375,11 @@ export default function MeetingSelection({
|
|||||||
|
|
||||||
{/* No meetings message - show when no ongoing or upcoming meetings */}
|
{/* No meetings message - show when no ongoing or upcoming meetings */}
|
||||||
{currentMeetings.length === 0 && upcomingMeetings.length === 0 && (
|
{currentMeetings.length === 0 && upcomingMeetings.length === 0 && (
|
||||||
<Box
|
<Flex
|
||||||
width="100%"
|
width="100%"
|
||||||
bg="gray.50"
|
flex="1"
|
||||||
borderRadius="xl"
|
justify="center"
|
||||||
p={8}
|
align="center"
|
||||||
textAlign="center"
|
textAlign="center"
|
||||||
mb={6}
|
mb={6}
|
||||||
>
|
>
|
||||||
@@ -395,7 +395,7 @@ export default function MeetingSelection({
|
|||||||
</Text>
|
</Text>
|
||||||
</VStack>
|
</VStack>
|
||||||
</VStack>
|
</VStack>
|
||||||
</Box>
|
</Flex>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* Create Unscheduled Meeting - Only for room owners or shared rooms */}
|
{/* Create Unscheduled Meeting - Only for room owners or shared rooms */}
|
||||||
|
|||||||
Reference in New Issue
Block a user