cryptpad/customize.dist/src/less2/include/app-noscroll.less

40 lines
880 B
Plaintext
Raw Normal View History

2021-01-29 16:36:18 +00:00
@import (reference) "./colortheme-all.less";
2018-07-14 13:15:23 +00:00
.app-noscroll_main() {
--LessLoader_require: LessLoader_currentFile();
}
& {
.cp-app-noscroll {
2021-01-29 16:36:18 +00:00
scrollbar-color: @scrollbar_color;
* {
scrollbar-width: thin;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-thumb {
background-color: @cp_scrollbar-fg;
width: 6px;
}
2017-09-04 13:09:54 +00:00
height: 100%;
width: 100%;
padding: 0px;
margin: 0px;
overflow: hidden;
box-sizing: border-box;
position: relative;
2018-04-12 17:08:08 +00:00
border: 0;
2018-07-14 13:15:23 +00:00
body {
height: 100%;
width: 100%;
padding: 0px;
margin: 0px;
overflow: hidden;
box-sizing: border-box;
position: relative;
border: 0;
}
2017-09-04 13:09:54 +00:00
}
2018-07-18 12:31:01 +00:00
}