Last active
April 3, 2025 11:09
-
-
Save andremichelle/465fbbe3fef059d98d677033fef89334 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
@mixin corner-frame($color: rgba(red, 0.5)) | |
position: relative | |
&::before, | |
&::after | |
content: "" | |
top: 0 | |
left: 0 | |
width: 100% | |
height: 100% | |
position: absolute | |
background-image: linear-gradient($color, $color), linear-gradient($color, $color), linear-gradient($color, $color), linear-gradient($color, $color) | |
background-repeat: no-repeat | |
pointer-events: none | |
&::before | |
background-size: 1px 3px, 2px 1px, 1px 2px, 3px 1px | |
background-position: 0 0, 1px 0, 100% calc(100% - 1px), 100% 100% | |
&::after | |
background-size: 1px 2px, 3px 1px, 1px 2px, 3px 1px | |
background-position: 100% 1px, 100% 0, 0 calc(100% - 1px), 0 100% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment