Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // custom scroll-bar
- @mixin custom-scroll-bar() {
- &::-webkit-scrollbar {
- border-radius: 10px;
- height: 10px;
- width: 8px;
- }
- &::-webkit-scrollbar-thumb {
- background: #999;
- border-radius: 10px;
- }
- &::-webkit-scrollbar-track {
- border-radius: 10px;
- }
- }
- // no scroll bar
- @mixin no-scroll-bar() {
- &::-webkit-scrollbar {
- height: 0;
- width: 0;
- }
- &::-webkit-scrollbar-thumb {
- height: 0;
- width: 0;
- }
- &::-webkit-scrollbar-track {
- height: 0;
- width: 0;
- }
- }
Add Comment
Please, Sign In to add comment