mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-19 16:06:02 +01:00
fix(web/menu): fix border radius not applying when there is 6 options
This commit is contained in:
@@ -192,7 +192,7 @@ const ListMenu: React.FC = () => {
|
|||||||
height="fit-content"
|
height="fit-content"
|
||||||
maxHeight={415}
|
maxHeight={415}
|
||||||
overflow="hidden"
|
overflow="hidden"
|
||||||
borderRadius={menu.items.length < 6 || selected === menu.items.length - 1 ? "md" : undefined}
|
borderRadius={menu.items.length <= 6 || selected === menu.items.length - 1 ? 'md' : undefined}
|
||||||
bg="#141517"
|
bg="#141517"
|
||||||
fontFamily="Nunito"
|
fontFamily="Nunito"
|
||||||
borderTopLeftRadius="none"
|
borderTopLeftRadius="none"
|
||||||
|
|||||||
Reference in New Issue
Block a user