9 lines
170 B
SCSS
9 lines
170 B
SCSS
|
@import "common.scss";
|
||
|
|
||
|
#Roll {
|
||
|
$bottomSize : $keyboardHeight + $bottombarHeight;
|
||
|
width: 100%;
|
||
|
height: calc(100% - #{$bottomSize});
|
||
|
bottom: $bottomSize;
|
||
|
left: 0px;
|
||
|
}
|