Skip to content

Instantly share code, notes, and snippets.

@hbsnow
Created April 8, 2020 12:28
Show Gist options
  • Save hbsnow/726eeb6a194682cbc5ff67acc442859c to your computer and use it in GitHub Desktop.
Save hbsnow/726eeb6a194682cbc5ff67acc442859c to your computer and use it in GitHub Desktop.
.separator {
position: relative;
width: 3rem;
height: 3rem;
border: 0;
margin: 0;
}
.separator::before,
.separator::after {
position: absolute;
content: '';
width: 1px;
top: 0;
bottom: 0;
background-color: var(--color-default-text-muted);
}
.separator::before {
left: 0;
transform: skew(-45deg);
transform-origin: left bottom;
}
.separator::after {
right: 0;
transform: skew(45deg);
transform-origin: right bottom;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment