File tree Expand file tree Collapse file tree 3 files changed +83
-2
lines changed Expand file tree Collapse file tree 3 files changed +83
-2
lines changed Original file line number Diff line number Diff line change 2020npm-debug.log *
2121yarn-debug.log *
2222yarn-error.log *
23- * .css *
2423** /.rpt2_cache
Original file line number Diff line number Diff line change 44 "main" : " dist/index.js" ,
55 "module" : " dist/es/index.js" ,
66 "types" : " dist/index.d.ts" ,
7- "files" : [ " dist/**/*.*" ],
7+ "files" : [
8+ " dist/**/*.*"
9+ ],
810 "repository" : " github:aeagle/react-spaces" ,
911 "author" : {
1012 "name" : " Allan Eagle"
Original file line number Diff line number Diff line change 1+ .spaces-centered-vertically {
2+ position : relative;
3+ top : 50% ;
4+ transform : translateY (-50% );
5+ }
6+
7+ .spaces-centered {
8+ position : relative;
9+ top : 50% ;
10+ transform : translateY (-50% );
11+ text-align : center;
12+ }
13+
14+ .spaces-clearfix : after {
15+ content : "" ;
16+ display : table;
17+ clear : both;
18+ }
19+
20+ .spaces-fixedsize-layout {
21+ overflow : hidden;
22+ position : relative;
23+ }
24+
25+ .spaces-fullpage-layout {
26+ position : fixed;
27+ overflow : hidden;
28+ }
29+
30+ .spaces-resize-handle {
31+ position : absolute;
32+ z-index : 9999 ;
33+ }
34+
35+ .spaces-resize-handle .resize-left {
36+ top : 0 ;
37+ bottom : 0 ;
38+ left : 0 ;
39+ cursor : w-resize;
40+ }
41+
42+ .spaces-resize-handle .resize-right {
43+ top : 0 ;
44+ bottom : 0 ;
45+ right : 0 ;
46+ cursor : e-resize;
47+ }
48+
49+ .spaces-resize-handle .resize-top {
50+ top : 0 ;
51+ left : 0 ;
52+ right : 0 ;
53+ cursor : n-resize;
54+ }
55+
56+ .spaces-resize-handle .resize-bottom {
57+ bottom : 0 ;
58+ left : 0 ;
59+ right : 0 ;
60+ cursor : s-resize;
61+ }
62+
63+ .spaces-space {
64+ position : absolute;
65+ overflow : hidden;
66+ z-index : 1 ;
67+ }
68+
69+ .spaces-space .spaces-space-inner {
70+ z-index : 1 ;
71+ position : absolute;
72+ left : 0 ;
73+ top : 0 ;
74+ right : 0 ;
75+ bottom : 0 ;
76+ }
77+
78+ .spaces-resize-handle .scrollable .spaces-space-inner {
79+ overflow : auto;
80+ }
You can’t perform that action at this time.
0 commit comments