tweet-actions.scss 651 B

123456789101112131415161718192021222324252627282930313233
  1. tweet-actions {
  2. .actions-container {
  3. display: flex;
  4. flex-direction: row;
  5. div {
  6. display: flex;
  7. flex-direction: row;
  8. align-items: center;
  9. justify-content: center;
  10. flex-grow: 1;
  11. text-align: center;
  12. margin-top: 8px;
  13. span {
  14. margin-left: 5px;
  15. font-size: 12px;
  16. font-weight: 300;
  17. color: #333;
  18. }
  19. }
  20. .icon-stack {
  21. position: relative;
  22. .secondary-icon {
  23. font-size: 0.7em;
  24. position: absolute;
  25. bottom: 10%;
  26. left: 50%;
  27. background: #fff;
  28. border-radius: 50%;
  29. padding: 1px;
  30. }
  31. }
  32. }
  33. }