styles.tsx 399 B

12345678910111213
  1. import styled from '@emotion/styled';
  2. import {ROW_HEIGHT, ROW_PADDING} from 'app/components/performance/waterfall/constants';
  3. export const SpanBarRectangle = styled('div')`
  4. position: relative;
  5. height: ${ROW_HEIGHT - 2 * ROW_PADDING}px;
  6. top: ${ROW_PADDING}px;
  7. min-width: 1px;
  8. user-select: none;
  9. transition: border-color 0.15s ease-in-out;
  10. border-right: 1px solid rgba(0, 0, 0, 0);
  11. `;