fm-bubble.component.scss 267 B

12345678910111213141516
  1. .bubble {
  2. width: 100px;
  3. height: 100px;
  4. background-color: #3498db;
  5. border-radius: 50%;
  6. animation: breathe 1.5s infinite alternate;
  7. }
  8. @keyframes breathe {
  9. 0% {
  10. transform: scale(0.5);
  11. }
  12. 100% {
  13. transform: scale(1);
  14. }
  15. }