We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 825db5c commit 5683cf2Copy full SHA for 5683cf2
src/components/Divider/styles.ts
@@ -2,8 +2,11 @@ import styled from 'styled-components';
2
import { colorBorderDefault } from '../../stylesheets/pallete';
3
4
export const Divider = styled.hr`
5
- min-height: 1px;
6
- height: 1px;
7
- background: ${colorBorderDefault};
8
width: 100%;
+ border-top: 0px;
+ border-right: 0px;
+ border-left: 0px;
9
+ border-image: initial;
10
+ border-bottom: 1px solid ${colorBorderDefault};
11
+ margin: 0px;
12
`;
0 commit comments