10 lines
168 B
CSS
10 lines
168 B
CSS
.divider {
|
|
border-bottom-color: var(--some-grey-color, #111);
|
|
border-bottom-style: solid;
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
.dotted {
|
|
border-bottom-style: dotted;
|
|
}
|