Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // Before
  2. .action-button {
  3. height: 30px;
  4. z-index: 3;
  5. background-color: $accent;
  6. position: fixed;
  7. width: 30px;
  8. color: $white;
  9. bottom: 15px;
  10. right: 15px;
  11. }
  12.  
  13. // After
  14. .action-button {
  15. position: fixed;
  16. right: 15px;
  17. bottom: 15px;
  18. z-index: 3;
  19. width: 30px;
  20. height: 30px;
  21. color: $white;
  22. background-color: $accent;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement