css-houdini-squircle icon indicating copy to clipboard operation
css-houdini-squircle copied to clipboard

A tiny CSS Houdini module that allows to add a squircle shape to HTML elements

Results 11 css-houdini-squircle issues
Sort by recently updated
recently updated
newest added

![Screenshot_20220424_064533](https://user-images.githubusercontent.com/18581488/164957085-3c07adbf-7fa8-4885-9605-24c90e5a060e.png) 98.0.2 (64-bit) Mozilla Firefox for Ubuntu

When I use drop shadow it just fade like this- `filter: drop-shadow(-2px 1px 11px black);` ![image](https://user-images.githubusercontent.com/61728025/153545197-94342375-8b1e-4eae-88ef-1691504b2ef5.png) and when I use box-shadow I fell like this- ![image](https://user-images.githubusercontent.com/61728025/153544937-fcf58402-b9c9-467f-8bfe-3ea7c7ae4b25.png) if I am doing...

Applying a squircle fill to an `` or wrapping another element in one results in nothing appearing

Instead of displaying nothing on safari, why not make sure that the border-radius is a default one and a border is added to the element? Example https://codepen.io/PavelLaptev/pen/OJWgReV Chrome ![CleanShot 2023-06-23...

enhancement

Hey there! Here's an example CSS snippet on how to use squircles effectively with CSS variables (to increase performance and avoid repaints when using both a fill and outline). Firstly,...

documentation

No-comma color functions syntax is valid CSS, is supported by all major browsers and used by me in production: ```css color: rgb(255 255 255/.5); /* Semi-transparent white */ ``` But...

bug

Given a 100x100 px square: ` --squircle-radius: 0 **27px** 15px 15px; ` ![image](https://github.com/PavelLaptev/css-houdini-squircle/assets/54154701/22e96128-21f3-487c-b199-31165fcdd450) ` --squircle-radius: 0 **28px** 15px 15px; ` ![image](https://github.com/PavelLaptev/css-houdini-squircle/assets/54154701/6f79d9a8-2a5a-48b4-9722-d36ffcf524d2) Every other side ends up with the maximum value

Is it possible to apply a transition effect to --spircle-fill or any of the others? Something like: `transition: --squircle-fill 0.3s ease;` doesn't seem to be working.

The link in the "about" section on the GitHub page is broken: ![image](https://github.com/user-attachments/assets/95fbcd81-e8ac-4a50-b8b3-66842e682847) should be https://pavellaptev.github.io/css-houdini-squircle/ instead

Hello, Thank you for creating this excellent CSS Houdini squircle module. I am using it in my project, and the squircle effect works perfectly when I apply it directly to...