Skip to content

Commit 1c6c8c1

Browse files
authored
fix: give str-chat__message-status-sent rules higher specificity (#344)
1 parent 848c4f8 commit 1c6c8c1

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

src/v2/styles/Message/Message-layout.scss

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,14 +249,23 @@
249249
}
250250

251251
.str-chat__message-status {
252-
--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 15);
252+
--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 16);
253253
@include utils.flex-row-center;
254254
column-gap: var(--str-chat__spacing-0_5);
255255
position: relative;
256256

257257
svg {
258-
width: calc(var(--str-chat__spacing-px) * 15);
259-
height: calc(var(--str-chat__spacing-px) * 15);
258+
width: var(--str-chat-icon-height);
259+
height: var(--str-chat-icon-height);
260+
}
261+
}
262+
263+
.str-chat__message-status.str-chat__message-status-sent {
264+
--str-chat-icon-height: calc(var(--str-chat__spacing-px) * 12);
265+
266+
svg {
267+
width: var(--str-chat-icon-height);
268+
height: var(--str-chat-icon-height);
260269
}
261270
}
262271

0 commit comments

Comments
 (0)