| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @mixin clearfix {
- &:after {
- content: '';
- display: table;
- clear: both;
- }
- }
- @mixin scrollBar {
- &::-webkit-scrollbar-track-piece {
- background: #d3dce6;
- }
- &::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
- &::-webkit-scrollbar-thumb {
- background: #99a9bf;
- border-radius: 20px;
- }
- }
- @mixin relative {
- position: relative;
- width: 100%;
- height: 100%;
- }
- @mixin font-style($fontSize, $lineHeight, $height) {
- font-size: $fontSize;
- line-height: $lineHeight;
- height: $height;
- }
- @mixin base-scroll-bar {
- -webkit-overflow-scrolling: touch;
- &::-webkit-scrollbar {
- width: 8px;
- height: 8px;
- border-radius: 5px;
- }
- &::-webkit-scrollbar-thumb {
- background: rgba(221, 221, 221, 0.7);
- border-radius: 10px;
- }
- &::-webkit-scrollbar-track {
- background: rgba(#ececec, 0.35);
- border-radius: 2px;
- }
- &::-webkit-scrollbar-track-piece {
- background: rgba(#ececec, 0.35);
- }
- }
|