-
-
Save kobitoDevelopment/0bce8a5f879331ab085493b292d68400 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.title { | |
--radius: 24px; | |
position: relative; | |
padding: 16px; | |
border-end-end-radius: var(--radius); | |
background-color: #fff; | |
&::before, | |
&::after { | |
content: ""; | |
position: absolute; | |
height: var(--radius); | |
aspect-ratio: 1/1; | |
border-end-end-radius: calc(infinity * 1px); | |
corner-shape: scoop; | |
background-color: inherit; | |
} | |
&::before { | |
top: 0; | |
left: 100%; | |
} | |
&::after { | |
top: 100%; | |
left: 0; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="title">カードのタイトル部分</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment