mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-18 22:30:37 +03:00
57 lines
663 B
SCSS
57 lines
663 B
SCSS
#target {
|
|
overflow: scroll;
|
|
resize: both;
|
|
position: relative;
|
|
// prevent container from reaching 0x0 dimensions for testing purposes
|
|
min-width: 50px;
|
|
min-height: 50px;
|
|
}
|
|
|
|
.padding0 {
|
|
padding: 0;
|
|
}
|
|
.padding10 {
|
|
padding: 10px;
|
|
}
|
|
.padding50 {
|
|
padding: 50px;
|
|
}
|
|
|
|
.border2 {
|
|
border: 2px solid red;
|
|
}
|
|
.border10 {
|
|
border: 10px solid red;
|
|
}
|
|
.border0 {
|
|
border: none;
|
|
}
|
|
|
|
.heightAuto {
|
|
height: auto;
|
|
}
|
|
.height200 {
|
|
height: 200px;
|
|
}
|
|
.heightHundred {
|
|
height: 100%;
|
|
}
|
|
|
|
.widthAuto {
|
|
width: auto;
|
|
float: left;
|
|
}
|
|
.width200 {
|
|
width: 200px;
|
|
}
|
|
.widthHundred {
|
|
width: 100%;
|
|
}
|
|
|
|
.displayNone {
|
|
display: none;
|
|
}
|
|
.displayBlock {
|
|
display: block;
|
|
}
|