Skip to content

Commit

Permalink
Fix: Fixed card spacing in masonary list and fix-placed player footer
Browse files Browse the repository at this point in the history
  • Loading branch information
0x0is1 committed Sep 30, 2024
1 parent 94db65e commit 933fa34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/screens/AlbumsScreen/components/Card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default Card;
const styles = StyleSheet.create({
card: {
maxWidth: 180,
minWidth: 180,
minWidth: 165,
backgroundColor: '#fff',
borderRadius: 8,
shadowColor: '#000',
Expand All @@ -46,7 +46,7 @@ const styles = StyleSheet.create({
shadowOffset: { width: 0, height: 2 },
elevation: 5,
overflow: "hidden",
marginHorizontal: 15,
marginHorizontal: 8,
marginVertical: 10,
},
image: {
Expand Down
1 change: 1 addition & 0 deletions src/screens/AlbumsScreen/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export default Navbar

const styles = StyleSheet.create({
searchInput: {
marginTop: 15,
flexDirection: 'row',
paddingHorizontal: 20,
paddingVertical: 15,
Expand Down
2 changes: 1 addition & 1 deletion src/screens/PlayerScreen/components/PlayerFooter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const PlayerFooter = ({ playState, onShuffle, setOnShuffle, playurlOverrider, pl

useEffect(() => {
Animated.timing(footerHeightAnim, {
toValue: albumMode ? 80 : 90,
toValue: 100,
duration: 400,
useNativeDriver: false,
easing: Easing.ease,
Expand Down

0 comments on commit 933fa34

Please sign in to comment.