Skip to content

Commit 6bee3d9

Browse files
authored
Merge pull request #63 from GetStream/channel-invitations
feat: Channel invitations for Angular SDK
2 parents 1f2f84e + f096ae2 commit 6bee3d9

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

src/styles/ChannelHeader.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
.str-chat {
134134
&__header-livestream {
135135
position: relative;
136-
z-index: 1;
136+
z-index: 2;
137137
border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
138138
background: var(--white-snow);
139139
box-shadow: 0 7px 9px 0 var(--border), 0 1px 0 0 var(--border);

src/styles/MessageList.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
padding: var(--xs-p);
5050
font-family: var(--second-font);
5151
text-align: center;
52+
margin-top: var(--xs-m);
5253

5354
&.notification-success {
5455
background: var(--faded-green);
@@ -61,6 +62,12 @@
6162
border: 1px solid var(--red);
6263
color: var(--red);
6364
}
65+
66+
&.notification-info {
67+
background: var(--faded-blue);
68+
border: 1px solid var(--blue);
69+
color: var(--blue);
70+
}
6471
}
6572

6673
.str-chat__connection-issue {

src/styles/_variables.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ $border-radius: 16px;
5454
--magenta: #{$primary-color};
5555
--red: #ff0000;
5656
--faded-red: #d0021b1a;
57+
--blue: #026afa;
58+
--faded-blue: #cfe3ff;
5759

5860
--dt-bg-team: #{$dt-bg-team};
5961

0 commit comments

Comments
 (0)