Compare commits
2
Commits
ba63bb0454
...
a382df71b5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a382df71b5 | ||
|
|
a25331b439 |
@@ -172,7 +172,7 @@ export default function App() {
|
|||||||
|
|
||||||
{/* Overlay PreviewScreen if active */}
|
{/* Overlay PreviewScreen if active */}
|
||||||
{currentScreen === 'preview' && (
|
{currentScreen === 'preview' && (
|
||||||
<View style={[StyleSheet.absoluteFill, { zIndex: 100, elevation: 100, backgroundColor: '#000' }]}>
|
<View style={[StyleSheet.absoluteFill, { zIndex: 100, elevation: 100, backgroundColor: 'transparent' }]}>
|
||||||
<PreviewScreen
|
<PreviewScreen
|
||||||
photoUris={photoUris}
|
photoUris={photoUris}
|
||||||
printerIp={settings.printerIp}
|
printerIp={settings.printerIp}
|
||||||
@@ -191,7 +191,7 @@ export default function App() {
|
|||||||
|
|
||||||
{/* Overlay AdminScreen if active */}
|
{/* Overlay AdminScreen if active */}
|
||||||
{currentScreen === 'admin' && (
|
{currentScreen === 'admin' && (
|
||||||
<View style={[StyleSheet.absoluteFill, { zIndex: 100, elevation: 100, backgroundColor: '#000' }]}>
|
<View style={[StyleSheet.absoluteFill, { zIndex: 100, elevation: 100, backgroundColor: 'transparent' }]}>
|
||||||
<AdminScreen
|
<AdminScreen
|
||||||
currentSettings={settings}
|
currentSettings={settings}
|
||||||
onSave={handleSaveSettings}
|
onSave={handleSaveSettings}
|
||||||
|
|||||||
@@ -960,7 +960,7 @@ const styles = StyleSheet.create({
|
|||||||
color: THEME.colors.text,
|
color: THEME.colors.text,
|
||||||
paddingHorizontal: THEME.spacing.md,
|
paddingHorizontal: THEME.spacing.md,
|
||||||
fontSize: 16,
|
fontSize: 16,
|
||||||
textAlign: 'center',
|
textAlign: 'left',
|
||||||
marginBottom: THEME.spacing.sm,
|
marginBottom: THEME.spacing.sm,
|
||||||
},
|
},
|
||||||
error: {
|
error: {
|
||||||
|
|||||||
@@ -699,6 +699,7 @@ const styles = StyleSheet.create({
|
|||||||
justifyContent: 'center',
|
justifyContent: 'center',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
backgroundColor: THEME.colors.background,
|
backgroundColor: THEME.colors.background,
|
||||||
|
overflow: 'hidden',
|
||||||
},
|
},
|
||||||
controlPanel: {
|
controlPanel: {
|
||||||
flex: 0.8,
|
flex: 0.8,
|
||||||
|
|||||||
+1
-1
@@ -5,7 +5,7 @@ type GradientColors = readonly [ColorValue, ColorValue, ...ColorValue[]];
|
|||||||
|
|
||||||
export const THEME = {
|
export const THEME = {
|
||||||
colors: {
|
colors: {
|
||||||
background: '#050510',
|
background: 'rgba(5, 5, 16, 0.99)',
|
||||||
surface: '#0D0D1A',
|
surface: '#0D0D1A',
|
||||||
surfaceSecondary: '#151528',
|
surfaceSecondary: '#151528',
|
||||||
primary: '#ff2bd6',
|
primary: '#ff2bd6',
|
||||||
|
|||||||
Reference in New Issue
Block a user