mirror of
https://github.com/revoltchat/revite.git
synced 2025-01-16 09:21:33 -05:00
14 lines
334 B
TypeScript
14 lines
334 B
TypeScript
import styled, { css } from "styled-components";
|
|
import { isTouchscreenDevice } from "../../lib/isTouchscreenDevice";
|
|
|
|
export default styled.div`
|
|
height: 100%;
|
|
display: flex;
|
|
user-select: none;
|
|
flex-direction: row;
|
|
align-items: stretch;
|
|
|
|
${ isTouchscreenDevice && css`
|
|
padding-bottom: 50px;
|
|
` }
|
|
`;
|