Skip to content

Commit 87bfb52

Browse files
committed
changed the border width
1 parent 6639dc4 commit 87bfb52

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/iamlazy/components/table.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
const { wrap } = require("lodash")
2+
13
module.exports = function({
24
addUtilities,
35
addComponents,
@@ -31,18 +33,21 @@ module.exports = function({
3133
},
3234
},
3335
thead: {
36+
borderTopWidth: '1px',
3437
borderBottomWidth: '2px',
3538
},
3639
tfoot: {
3740
borderTopWidth: '2px',
41+
borderBottomWidth: '1px'
3842
},
3943
'tbody': {
4044
tr: {
4145
borderWidth: '0',
4246
borderBottomWidth: '1px',
47+
borderTopWidth: '1px',
4348
color: theme('colors.gray.700'),
4449
fontSize: theme('fontSize.light'),
45-
whiteSpace: 'nowrap',
50+
whiteSpace: 'wrap',
4651
width: '100%',
4752
'th,td': {
4853
padding: theme('padding.4')

0 commit comments

Comments
 (0)