mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-24 09:48:37 +08:00
28 lines
497 B
SCSS
28 lines
497 B
SCSS
@import '../style/variable';
|
|
@import '../style/mixin';
|
|
|
|
.dev-tools {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
bottom: 0;
|
|
background: #fff;
|
|
z-index: 500;
|
|
display: none;
|
|
opacity: 0;
|
|
transition: opacity $anim-duration, height $anim-duration;
|
|
.tools {
|
|
@include overflow-auto();
|
|
height: 100%;
|
|
width: 100%;
|
|
position: relative;
|
|
.tool {
|
|
@include absolute();
|
|
overflow: hidden;
|
|
display: none;
|
|
background: #f8f9fa;
|
|
}
|
|
}
|
|
}
|