11 lines
128 B
CSS
11 lines
128 B
CSS
.disabled {
|
|
pointer-events: none;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.sticky {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
bottom: 0;
|
|
}
|