revite/src/components/navigation/SidebarBase.tsx

15 lines
334 B
TypeScript
Raw Normal View History

import styled, { css } from "styled-components";
import { isTouchscreenDevice } from "../../lib/isTouchscreenDevice";
2021-06-19 15:29:04 +01:00
export default styled.div`
height: 100%;
display: flex;
user-select: none;
flex-direction: row;
2021-06-19 18:46:05 +01:00
align-items: stretch;
${ isTouchscreenDevice && css`
padding-bottom: 50px;
` }
2021-06-19 15:29:04 +01:00
`;