File tree 2 files changed +12
-1
lines changed
site/src/components/Resources
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,17 @@ const useStyles = makeStyles((theme) => ({
210
210
background : theme . palette . background . paper ,
211
211
borderRadius : theme . shape . borderRadius ,
212
212
border : `1px solid ${ theme . palette . divider } ` ,
213
+
214
+ "&:not(:first-child)" : {
215
+ borderTop : 0 ,
216
+ borderTopLeftRadius : 0 ,
217
+ borderTopRightRadius : 0 ,
218
+ } ,
219
+
220
+ "&:not(:last-child)" : {
221
+ borderBottomLeftRadius : 0 ,
222
+ borderBottomRightRadius : 0 ,
223
+ } ,
213
224
} ,
214
225
215
226
resourceCardProfile : {
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export const Resources: FC<React.PropsWithChildren<ResourcesProps>> = ({
54
54
}
55
55
56
56
return (
57
- < Stack direction = "column" spacing = { 1 } >
57
+ < Stack direction = "column" spacing = { 0 } >
58
58
{ displayResources . map ( ( resource ) => {
59
59
return (
60
60
< ResourceCard
You can’t perform that action at this time.
0 commit comments