Skip to content

Commit c8b5b9c

Browse files
committed
docs(theme): fix alert border
1 parent d5e11bf commit c8b5b9c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

www/src/gatsby-plugin-theme-ui/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ export default merge(myTheme, {
9898
color: 'text',
9999
bg: 'muted',
100100
display: 'block',
101-
border: (theme) => `2px solid ${theme.colors.highlight}`,
101+
borderRadius: '2px',
102+
borderStyle: 'solid',
103+
borderColor: 'highlight',
102104
'h1:first-of-type, h2:first-of-type, h3:first-of-type, h4:first-of-type, h5:first-of-type, h6:first-of-type': {
103105
mt: 2
104106
}

0 commit comments

Comments
 (0)