bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/wake-lock/styles.js
Arthurk12 c52a35834e feat(wake-lock): enable implicit activation based on the default setting
This commit removes the wake lock activation toast along with the
enable/disable buttons, implementing the wake lock implicit activation
behavior. The wake lock feature is implicitly activated if the
`defaultSettings.application.wakeLock` in the `settings.yml` file is set
true. For mobile devices that do not support the API or fail when
requesting a wake lock, toasts are raised explaining that calls will be
dropped when the screen turns off.

In cases where `defaultSettings.application.wakeLock` is set false, users
can enable the wake lock manually through the settings menu.
2023-08-11 17:42:20 -03:00

9 lines
111 B
JavaScript

import styled from 'styled-components';
const Title = styled.h3`
margin: 0;
`;
export default {
Title,
};