Skip to content

Commit

Permalink
Create styles.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tajmahal226 authored Sep 20, 2024
1 parent f47c5de commit f435e64
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions styles.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
export const tableHeaderStyle = {
backgroundColor: '#f2f2f2',
padding: '12px',
textAlign: 'left',
borderBottom: '1px solid #ddd'
};

export const tableCellStyle = {
padding: '12px',
borderBottom: '1px solid #ddd'
};

export const inputStyle = {
padding: '8px',
borderRadius: '4px',
border: '1px solid #ddd',
fontSize: '14px'
};

export const buttonStyle = {
padding: '10px',
backgroundColor: '#0088FE',
color: 'white',
border: 'none',
borderRadius: '4px',
cursor: 'pointer',
fontSize: '14px'
};

0 comments on commit f435e64

Please sign in to comment.