I've been attempting to design my div to resemble this example, but unfortunately, I haven't had much luck. I experimented with the polygon method to achieve the desired look, but all I managed to create was an angled line that didn't align with the border radius. Additionally, I tried using the transform method, but I couldn't get it to display beneath my navigation div. Does anyone have any suggestions for achieving this outcome without resorting to SVG files?
<header>
...
</header>
SCSS:
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
text-decoration: none;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
list-style: none;
}
.navigation {
background: #6426dd;
...
}