Skip to content

Commit

Permalink
Fix #20: Messages close icon position (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Sep 11, 2023
1 parent 049136d commit 5c681f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions theme-base/components/messages/_messages.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ body {
}

.ui-messages-close {
position: absolute;
right: math.div(-1 * $actionIconWidth, 2);
top: math.div(-1 * $actionIconHeight, 2);
position: relative;
right: -1 * $actionIconWidth;
top: -1 * $actionIconHeight;
@include action-icon();
text-align: center;
transition: background-color $transitionDuration;
Expand Down

0 comments on commit 5c681f2

Please sign in to comment.