mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
21 lines
364 B
SCSS
21 lines
364 B
SCSS
.teardrop {
|
|
/* Center the content */
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
/* Border */
|
|
border: 2px solid #d1d5db;
|
|
border-radius: 0px 50% 50% 50%;
|
|
|
|
/* Angle at the top */
|
|
transform: rotate(45deg);
|
|
|
|
/* Size */
|
|
height: 4rem;
|
|
width: 4rem;
|
|
}
|
|
|
|
.teardrop__content {
|
|
transform: rotate(-45deg);
|
|
} |