Files
OverlayScrollbars/packages/overlayscrollbars/tests/puppeteer/SizeObserver/index.scss
T
2020-10-24 01:14:52 +02:00

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;
}