Skip to content

Commit

Permalink
BUGFIX: typo in CSS property border-bottom-left-radius
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Krull committed Nov 20, 2022
1 parent a1c22c3 commit 604e945
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Neos.Neos/Resources/Private/Styles/Foundation/_mixins.scss
Expand Up @@ -254,11 +254,11 @@
}
@mixin border-bottom-radius($radius) {
border-bottom-right-radius: $radius;
bborder-bottom-left-radius: $radius;
border-bottom-left-radius: $radius;
}
@mixin border-left-radius($radius) {
border-top-left-radius: $radius;
bborder-bottom-left-radius: $radius;
border-bottom-left-radius: $radius;
}

// Drop shadows
Expand Down

0 comments on commit 604e945

Please sign in to comment.