/
QuickMeet
/
Chat.Desktop
Обзор
Документация
Войти
/
QuickMeet
/
Chat.Desktop
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/ui/components/SupportedVersionDialog/styles.tsx
25 строк
457 B
Jean Brito
fix: Supported version alert just close on button (#2778)
30 ноя 2023, 22:38
Не верифицирован
30 ноя 2023, 22:38
8507fbb
Код
Авторство
О чём код?
import styled from '@emotion/styled'; import { css } from '@rocket.chat/css-in-js'; type WrapperProps = { isVisible: boolean; }; export const Wrapper = styled.section<WrapperProps>` z-index: 1000; top: 0; bottom: 0; display: flex; flex-direction: column; cursor: default; user-select: none; border: 0; background-color: transparent; max-height: 90vh; ${({ isVisible }) => !isVisible && css` display: none; `} `;