styled.ts 761 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import styled from 'styled-components';
  2. export const Container = styled.div`
  3. min-width: 300px;
  4. height: 53px;
  5. border-radius: 2px;
  6. box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.38);
  7. background-color: rgba(0, 0, 0, 0.6);
  8. position: relative;
  9. display: flex;
  10. padding: 0 5px;
  11. align-items: center;
  12. :before {
  13. content: '';
  14. border-left: 20px solid transparent;
  15. border-right: 20px solid transparent;
  16. border-top: 20px solid rgba(0, 0, 0, 0.6);
  17. position: absolute;
  18. margin: auto;
  19. left: 0;
  20. right: 0;
  21. width: 0px;
  22. bottom: -20px;
  23. }
  24. `;
  25. export const Subtitle = styled.div`
  26. display: inline-block;
  27. color: #ffffff;
  28. padding: 0 10px 0 15px;
  29. min-width: 70px;
  30. `;
  31. export const SliderWrapper = styled.div`
  32. width: 220px;
  33. `;