minor ui undo/fix

This commit is contained in:
Boof2015
2026-07-08 02:07:54 -04:00
parent af33698b69
commit acc6bdf3eb
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -363,7 +363,7 @@ export default function RootLayout() {
presentation: 'transparentModal',
animation: 'none',
gestureEnabled: false,
contentStyle: { backgroundColor: theme.colors.bgPrimary },
contentStyle: { backgroundColor: 'transparent' },
}}
/>
</Stack>
+6 -1
View File
@@ -1080,12 +1080,17 @@ export default function NowPlayingScreen() {
const useStyles = createThemedStyles((colors) => ({
backdrop: {
flex: 1,
backgroundColor: colors.bgPrimary,
backgroundColor: 'transparent',
},
content: {
flex: 1,
backgroundColor: colors.bgPrimary,
alignItems: 'center',
// Clip the sheet to its own bounds. The NowPlayingWash bleeds up via negative
// offsets to reach the true screen edges — fine at rest (this box is full-screen),
// but while swiping the sheet down that overflow would spill above its top edge
// onto the screen behind. Clipping contains the wash to the sheet in both states.
overflow: 'hidden',
},
shell: {
flex: 1,