12345678910111213141516171819202122232425 |
- .sidebar-button {
- margin-top: 15px;
- a {
- border: 1px solid $orange;
- border-radius: 4px;
- color: $orange;
- display: inline-block;
- padding: 0 15px;
- .fa, .fab, .far, .fas {
- margin-right: 5px;
- }
- &:hover {
- background: $orange;
- border: 1px solid $orange;
- color: white;
- .fa, .fab, .far, .fas {
- color: white;
- }
- }
- }
- }
|