/
QuickMeet
/
Chat.Desktop
Обзор
Документация
Войти
/
QuickMeet
/
Chat.Desktop
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/ui/components/Shell/styles.tsx
55 строк
1 KB
Tasso Evangelista
refactor!(deps): Bump all critical dependencies (#2803)
15 янв 2024, 17:33
Не верифицирован
15 янв 2024, 17:33
4b4f2ee
Код
Авторство
О чём код?
import { Global, css } from '@emotion/react'; import styled from '@emotion/styled'; export const GlobalStyles = () => ( <Global styles={css` *, *::before, *::after { box-sizing: border-box; } :focus { outline: 0 !important; outline-style: none; outline-color: transparent; } body { -webkit-font-smoothing: antialiased; margin: 0; padding: 0; font-family: system-ui; font-size: 0.875rem; line-height: 1rem; background-color: #2f343d; } `} /> ); export const WindowDragBar = styled.div` position: fixed; width: 100vw; height: 22px; -webkit-app-region: drag; `; export const Wrapper = styled.div` overflow: hidden; width: 100vw; height: 100vh; cursor: default; user-select: none; background-color: #2f343d; display: flex; flex-flow: row nowrap; `; export const ViewsWrapper = styled.div` position: relative; flex: 1 1 auto; align-self: stretch; max-width: 100%; `;