Skip to content

Commit

Permalink
fix: Review radius of attached activity thumbnail - MEED-7322 - Meeds…
Browse files Browse the repository at this point in the history
…-io/meeds#2306 (#820)

Before this change, the border radius was not properly applied to the attached activity thumbnail. This PR fixes that issue.
  • Loading branch information
SaraBoutej authored Aug 30, 2024
1 parent d91587b commit a05b7f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions platform-ui-skin/src/main/webapp/skin/less/core/helpers.less
Original file line number Diff line number Diff line change
Expand Up @@ -298,16 +298,16 @@
border-radius: @borderRadius !important;
}
.border-top-left-radius {
border-top-left-radius: ~"var(--appBorderRadiusTopLeft, var(--allPagesBorderRadius, 4px)) !important";
border-top-left-radius: @baseBorderRadius !important;
}
.border-top-right-radius {
border-top-right-radius: ~"var(--appBorderRadiusTopRight, var(--allPagesBorderRadius, 4px)) !important";
border-top-right-radius: @baseBorderRadius !important;
}
.border-bottom-left-radius {
border-bottom-left-radius: ~"var(--appBorderRadiusBottomLeft, var(--allPagesBorderRadius, 4px)) !important";
border-bottom-left-radius: @baseBorderRadius !important;
}
.border-bottom-right-radius {
border-bottom-right-radius: ~"var(--appBorderRadiusBottomRight, var(--allPagesBorderRadius, 4px)) !important";
border-bottom-right-radius: @baseBorderRadius !important;
}
.application-background {
background: @baseBackground !important;
Expand Down

0 comments on commit a05b7f5

Please sign in to comment.