styles.css 334 B

12345678910111213141516
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. background-color: rgba(0, 0, 0, 0); /* Transparent background */
  5. }
  6. .white-circle {
  7. width: 100px;
  8. height: 100px;
  9. background-color: white;
  10. border-radius: 50%;
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. app-region: drag;
  15. user-select: none;
  16. }