mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-27 14:26:06 +00:00
chore: remove Tailwind badge from README, lower FAB z-index, add listbox stopPropagation, add ModalWrapper overflow hidden, darken Bordered border
This commit is contained in:
@@ -89,7 +89,6 @@ A self-hosted solution to streamline and organize all aspects of your life.</p>
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
@@ -28,7 +28,7 @@ export function FAB({
|
||||
}
|
||||
position="fixed"
|
||||
right="1.5em"
|
||||
zIndex="9992"
|
||||
zIndex="10"
|
||||
>
|
||||
<Button {...props} icon={icon} />
|
||||
</Flex>
|
||||
|
||||
@@ -40,6 +40,9 @@ export function ListboxOptions({
|
||||
transition
|
||||
anchor={portal ? 'bottom start' : undefined}
|
||||
portal={portal}
|
||||
onMouseDown={e => {
|
||||
e.stopPropagation()
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
</HeadlessListboxOptions>
|
||||
|
||||
@@ -69,6 +69,7 @@ export function ModalWrapper({
|
||||
sm: 'calc(100vw - 8rem)'
|
||||
}}
|
||||
minWidth="0"
|
||||
overflowX="hidden"
|
||||
overflowY="auto"
|
||||
p="lg"
|
||||
position="absolute"
|
||||
|
||||
@@ -13,6 +13,7 @@ import {
|
||||
type ResponsiveProp,
|
||||
type ThemeConditionProp,
|
||||
type TokenizedCommonProps,
|
||||
colorWithOpacity,
|
||||
normalizeResponsiveProp,
|
||||
resolveCommonSprinkleProps,
|
||||
resolveStyles
|
||||
@@ -94,7 +95,7 @@ export function Bordered<T extends ElementType = 'div'>({
|
||||
ref,
|
||||
display,
|
||||
// Border props
|
||||
borderColor = { base: 'bg-300', dark: 'bg-600' },
|
||||
borderColor = { base: 'bg-300', dark: colorWithOpacity('bg-700', '50%') },
|
||||
borderStyle = 'solid',
|
||||
borderSide = 'all',
|
||||
borderWidth = '1px',
|
||||
|
||||
Reference in New Issue
Block a user