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

42 lines
908 B
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
},
Tab: {
display: 'flex',
backgroundColor: 'black'
}
})