Korbs/Penpot-App
Archived
1
Fork 0
This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
Penpot-App/stylesheets/style.js

96 lines
2.1 KiB
JavaScript
Raw Normal View History

2023-06-05 00:22:47 -04:00
import * as React from 'react'
import {StyleSheet} from 'react-native'
export default StyleSheet.create({
Container: {
flex: 1,
position: 'relative'
},
AddButton: {
position: 'absolute',
color: 'white',
backgroundColor: '#202020',
right: 0,
height: 36,
width: 36,
fontSize: 18,
display: 'flex',
textAlign: 'center',
textAlignVertical: "center",
borderRadius: 50,
marginTop: 6,
marginRight: 12
},
RemoveButton: {
position: 'absolute',
color: 'white',
backgroundColor: '#202020',
right: 0,
height: 36,
width: 36,
fontSize: 18,
display: 'flex',
textAlign: 'center',
textAlignVertical: "center",
borderRadius: 50,
marginTop: 4,
marginRight: 80
},
2023-06-07 20:26:41 -04:00
SettingButton: {
position: 'absolute',
color: 'white',
backgroundColor: '#202020',
right: 42,
height: 36,
width: 92,
fontSize: 14,
display: 'flex',
textAlign: 'center',
textAlignVertical: "center",
borderRadius: 50,
marginTop: 6,
marginRight: 12
},
Settings: {
position: 'absolute',
backgroundColor: 'white',
top: 0,
right: 0,
height: 140,
width: 350,
fontSize: 14,
display: 'flex',
borderRadius: 10,
padding: 12
},
InstanceForm: {
backgroundColor: 'lightgray',
color: 'black',
borderRadius: 4,
paddingHorizontal: 12,
paddingVertical: 6,
marginTop: 6
},
InstanceCancel: {
backgroundColor: '#EEE',
color: 'black',
borderRadius: 4,
marginTop: 12,
marginRight: 12,
paddingHorizontal: 24,
paddingVertical: 10,
alignSelf: 'flex-end'
},
InstanceSubmit: {
backgroundColor: '#31efb8',
color: 'black',
borderRadius: 4,
marginTop: 12,
paddingHorizontal: 24,
paddingVertical: 6,
alignSelf: 'flex-end'
},
2023-06-05 00:22:47 -04:00
Tab: {
display: 'flex',
backgroundColor: 'black'
}
})