4
0
forked from crowetic/commerce
2020-10-05 17:35:14 -03:00

34 lines
443 B
CSS

.root {
@apply w-full;
min-width: 100%;
}
.container {
@apply flex flex-row items-center;
& > * {
@apply flex-1 px-16 py-4;
width: 460px;
}
& > *:after {
content: ' ';
display: block;
position: absolute;
height: 100px;
background: #999;
width: 2px;
left: 20px;
top: calc(50% - 53px);
transform: rotate(25deg);
}
}
.primary {
@apply bg-white;
}
.secondary {
@apply bg-black;
}