sidebar-button.styl 396 B

12345678910111213141516171819202122232425
  1. .sidebar-button {
  2. margin-top: 15px;
  3. a {
  4. border: 1px solid $orange;
  5. border-radius: 4px;
  6. color: $orange;
  7. display: inline-block;
  8. padding: 0 15px;
  9. .fa, .fab, .far, .fas {
  10. margin-right: 5px;
  11. }
  12. &:hover {
  13. background: $orange;
  14. border: 1px solid $orange;
  15. color: white;
  16. .fa, .fab, .far, .fas {
  17. color: white;
  18. }
  19. }
  20. }
  21. }