Skip to content

Commit 5683cf2

Browse files
committed
fix: divider height
1 parent 825db5c commit 5683cf2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/components/Divider/styles.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ import styled from 'styled-components';
22
import { colorBorderDefault } from '../../stylesheets/pallete';
33

44
export const Divider = styled.hr`
5-
min-height: 1px;
6-
height: 1px;
7-
background: ${colorBorderDefault};
85
width: 100%;
6+
border-top: 0px;
7+
border-right: 0px;
8+
border-left: 0px;
9+
border-image: initial;
10+
border-bottom: 1px solid ${colorBorderDefault};
11+
margin: 0px;
912
`;

0 commit comments

Comments
 (0)