mobile: fix border radius of context menu

This commit is contained in:
ammarahm-ed
2023-07-31 12:56:26 +05:00
parent 85fa49f53e
commit fcaefe9b55
2 changed files with 2 additions and 2 deletions

View File

@@ -51,7 +51,6 @@ const SheetWrapper = ({
const dimensions = useSettingStore((state) => state.dimensions);
const pitchBlack = useSettingStore((state) => state.settings.pitchBlack);
const insets = useGlobalSafeAreaInsets();
console.log(colors.primary.background);
let width = dimensions.width > 600 ? 600 : 500;
const style = React.useMemo(() => {

View File

@@ -92,7 +92,8 @@ export function SettingsPicker<T>({
borderRadius: 5,
backgroundColor: colors.primary.background,
width: width,
marginTop: 60
marginTop: 60,
overflow: "hidden"
}}
onRequestClose={() => {
menuRef.current?.hide();