generated from mirzaev/pot
34 lines
518 B
CSS
34 lines
518 B
CSS
i.arrow.right {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
width: 22px;
|
|
--height: 22px;
|
|
height: var(--height);
|
|
}
|
|
|
|
i.arrow.right::after,
|
|
i.arrow.right::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
right: 3px;
|
|
}
|
|
|
|
i.arrow.right::after {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-top: 2px solid;
|
|
border-right: 2px solid;
|
|
transform: rotate(45deg);
|
|
bottom: 7px;
|
|
}
|
|
|
|
i.arrow.right::before {
|
|
width: 16px;
|
|
height: 2px;
|
|
bottom: 10px;
|
|
background: currentColor;
|
|
}
|