Tune web dropdown styles

This commit is contained in:
Paul Frazee
2023-12-28 11:38:24 -08:00
parent 3427255ce6
commit 9c4eb306b4
@@ -64,7 +64,7 @@ export function NativeDropdown({
const pal = usePalette('default') const pal = usePalette('default')
const theme = useTheme() const theme = useTheme()
const dropDownBackgroundColor = const dropDownBackgroundColor =
theme.colorScheme === 'dark' ? pal.btn : pal.viewLight theme.colorScheme === 'dark' ? pal.btn : pal.view
const [open, setOpen] = React.useState(false) const [open, setOpen] = React.useState(false)
const buttonRef = React.useRef<HTMLButtonElement>(null) const buttonRef = React.useRef<HTMLButtonElement>(null)
const menuRef = React.useRef<HTMLDivElement>(null) const menuRef = React.useRef<HTMLDivElement>(null)
@@ -164,7 +164,7 @@ export function NativeDropdown({
<FontAwesomeIcon <FontAwesomeIcon
icon={item.icon.web} icon={item.icon.web}
size={20} size={20}
style={[pal.text]} color={pal.colors.textLight}
/> />
)} )}
</DropdownMenuItem> </DropdownMenuItem>
@@ -182,7 +182,7 @@ export function NativeDropdown({
<FontAwesomeIcon <FontAwesomeIcon
icon={item.icon.web} icon={item.icon.web}
size={20} size={20}
style={[pal.text]} color={pal.colors.textLight}
/> />
)} )}
</DropdownMenuItem> </DropdownMenuItem>
@@ -215,6 +215,7 @@ const styles = StyleSheet.create({
paddingLeft: 4, paddingLeft: 4,
paddingRight: 4, paddingRight: 4,
marginTop: 6, marginTop: 6,
boxShadow: 'rgba(0, 0, 0, 0.3) 0px 5px 20px',
}, },
item: { item: {
display: 'flex', display: 'flex',
@@ -231,6 +232,8 @@ const styles = StyleSheet.create({
borderRadius: 8, borderRadius: 8,
}, },
itemTitle: { itemTitle: {
fontSize: 18, fontSize: 16,
fontWeight: '500',
paddingRight: 10,
}, },
}) })