mirror of
https://github.com/urosran/cally.git
synced 2025-11-27 00:44:54 +00:00
fixed refresh, tablet drawer, drawer titles
This commit is contained in:
@ -17,9 +17,9 @@ const DrawerButton = (props: IDrawerButtonProps) => {
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
iconContainer: {
|
||||
width: "70%",
|
||||
width: isTablet ? '50%' : "70%",
|
||||
aspectRatio: 1,
|
||||
borderRadius: 50,
|
||||
borderRadius: 100,
|
||||
},
|
||||
labelStyle: { fontSize: 15, fontFamily: "Poppins_400Regular" },
|
||||
});
|
||||
@ -42,7 +42,7 @@ const DrawerButton = (props: IDrawerButtonProps) => {
|
||||
</View>
|
||||
)}
|
||||
style={{
|
||||
aspectRatio: 1,
|
||||
aspectRatio: isTablet ? 1.2 : 1,
|
||||
borderRadius: 18.55,
|
||||
marginBottom: 12,
|
||||
flexDirection: "column",
|
||||
|
||||
Reference in New Issue
Block a user