float-button.css 289 B

123456789101112131415
  1. .float-button {
  2. border: 1px solid black;
  3. border-radius: 50%;
  4. width: fit-content;
  5. padding: 0.5rem 0.8rem;
  6. background-color: turquoise;
  7. color: black;
  8. cursor: pointer;
  9. }
  10. .float-button-container{
  11. display: flex;
  12. justify-content: end;
  13. margin-top: 2rem;
  14. }