Skip to content

Commit

Permalink
fix: add disclaimer
Browse files Browse the repository at this point in the history
  • Loading branch information
myandrienko committed Oct 1, 2024
1 parent e3a4c19 commit fe71035
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ In this article we'll build a UI control for manual video quality selection.

## Prerequisites

If you haven't
already bootstrapped a video calling application (our
[Video Calling Tutorial](https://getstream.io/video/sdk/react/tutorial/video-calling/)
is a great place to start!), here's a very simple application that we'll use as
a starting point:
If you haven't already bootstrapped a video calling application (our [Video Calling Tutorial](https://getstream.io/video/sdk/react/tutorial/video-calling/) is a great place to start!), here's a very simple application that we'll use as a starting point:

```jsx
import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ export const SettingsTabModalMenu = (props: {
title={t('Select a Speaker')}
/>
<IncomingVideoSettingsDropdown title={t('Incoming video quality')} />
<div className="rd__tab-panel__note">
Actual incoming video quality depends on a number of factors, such as
the quality of the source video, and network conditions.
</div>
</TabWrapper>
<TabWrapper icon="video-effects" label="Effects" inMeeting>
<VideoEffectsSettings />
Expand Down
6 changes: 6 additions & 0 deletions sample-apps/react/react-dogfood/style/SettingsTabModal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@
margin-right: auto;
}

&__tab-panel__note {
font-size: 13px;
color: var(--str-video__text-color2);
padding: 0 var(--str-video__spacing-lg);
}

&__tab-panel__close {
background-color: unset;
}
Expand Down

0 comments on commit fe71035

Please sign in to comment.