Thumbnail.js 638 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // @flow
  2. export default () => {
  3. const thumbnailTheme = {
  4. '.square': {
  5. borderRadius: 0,
  6. '.small': {
  7. width: 36,
  8. height: 36,
  9. borderRadius: 0
  10. },
  11. '.large': {
  12. width: 80,
  13. height: 80,
  14. borderRadius: 0
  15. }
  16. },
  17. '.small': {
  18. width: 36,
  19. height: 36,
  20. borderRadius: 18,
  21. '.square': {
  22. borderRadius: 0
  23. }
  24. },
  25. '.large': {
  26. width: 80,
  27. height: 80,
  28. borderRadius: 40,
  29. '.square': {
  30. borderRadius: 0
  31. }
  32. },
  33. width: 56,
  34. height: 56,
  35. borderRadius: 28
  36. };
  37. return thumbnailTheme;
  38. };