@bagelink/vue 0.0.435 → 0.0.439

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,118 +1,117 @@
1
1
  .bg-dark {
2
- position: fixed;
3
- top: 0;
4
- right: 0;
5
- left: 0;
6
- bottom: 0;
7
- background-color: rgba(0, 0, 0, 0.7);
8
- z-index: 999;
9
- pointer-events: none;
10
- opacity: 0;
11
- transition: all ease-in-out 0.3s;
12
- max-height: 100vh;
13
- overflow: auto;
14
- margin: 0 auto;
15
- width: 100%;
16
- display: grid;
17
- align-items: center;
2
+ position: fixed;
3
+ top: 0;
4
+ right: 0;
5
+ left: 0;
6
+ bottom: 0;
7
+ background-color: rgba(0, 0, 0, 0.7);
8
+ z-index: 999;
9
+ pointer-events: none;
10
+ opacity: 0;
11
+ transition: all ease-in-out 0.3s;
12
+ max-height: 100vh;
13
+ overflow: scroll;
14
+ margin: 0 auto;
15
+ width: 100%;
16
+ display: grid;
17
+ align-items: center;
18
+ overflow-x: hidden;
18
19
  }
19
20
 
21
+
20
22
  .bg-lignt {
21
- background-color: var(--bgl-white);
23
+ background-color: var(--bgl-white);
22
24
  }
23
25
 
24
26
  .modal {
25
- width: 96%;
26
- max-width: 720px;
27
- /* transform: scale(0.5); */
28
- /* opacity: 0; */
29
- transition: all ease-in-out 0.18s;
30
- margin-left: auto;
31
- margin-right: auto;
32
- height: fit-content;
27
+ width: 96%;
28
+ max-width: 720px;
29
+ /* transform: scale(0.5); */
30
+ /* opacity: 0; */
31
+ transition: all ease-in-out 0.18s;
32
+ margin-left: auto;
33
+ margin-right: auto;
34
+ height: fit-content;
33
35
  }
34
36
 
35
37
  .small-modal .modal {
36
- max-width: 300px;
37
- text-align: center;
38
+ max-width: 300px;
39
+ text-align: center;
38
40
  }
39
41
 
40
42
  .tool-bar {
41
- margin: -2rem -1rem 1rem;
42
- display: flex;
43
- justify-content: space-between;
44
- position: -webkit-sticky;
45
- position: sticky;
46
- padding-top: 1rem;
47
- top: 0rem;
48
- z-index: 3;
49
- background: var(--bgl-white);
43
+ margin: -2rem -1rem 1rem;
44
+ display: flex;
45
+ justify-content: space-between;
46
+ position: -webkit-sticky;
47
+ position: sticky;
48
+ padding-top: 1rem;
49
+ top: 0rem;
50
+ z-index: 3;
51
+ background: var(--bgl-white);
50
52
  }
51
53
 
52
54
  .modal-size {
53
- cursor: pointer;
55
+ cursor: pointer;
54
56
  }
55
57
 
56
58
  .is-side .modal {
57
- inset-inline-end: -1720px;
58
- transform: scale(1);
59
- opacity: 1;
60
- /* position: fixed; */
61
- /* top: 20px; */
62
- /* bottom: 20px; */
63
- max-width: 600px;
64
- width: 90%;
65
- margin-top: 20px;
66
- margin-bottom: 20px;
67
- margin-inline-start: auto;
68
- margin-inline-end: 20px;
69
- min-height: calc(100vh - 40px);
70
- transform: translateX(100%);
59
+ inset-inline-end: -1720px;
60
+ transform: scale(1);
61
+ opacity: 1;
62
+ max-width: 600px;
63
+ width: 90%;
64
+ margin-top: 20px;
65
+ margin-bottom: 20px;
66
+ margin-inline-start: auto;
67
+ margin-inline-end: 20px;
68
+ min-height: calc(100vh - 40px);
69
+ transform: translateX(100%);
71
70
  }
72
71
 
73
72
  .is-active .modal {
74
- transform: scale(1);
75
- opacity: 1;
76
- box-shadow: 6px 6px 20px 20px #0000001c;
73
+ transform: scale(1);
74
+ opacity: 1;
75
+ box-shadow: 6px 6px 20px 20px #0000001c;
77
76
  }
78
77
 
79
78
  .bg-lignt .modal {
80
- transform: scale(1);
81
- border: 1px solid var(--border-color);
79
+ transform: scale(1);
80
+ border: 1px solid var(--border-color);
82
81
  }
83
82
 
84
83
  .bg-lignt.is-active .modal {
85
- box-shadow: none;
84
+ box-shadow: none;
86
85
  }
87
86
 
88
87
  .is-active.is-side .modal {
89
- inset-inline-end: 0px;
90
- transform: translateX(0%);
88
+ inset-inline-end: 0px;
89
+ transform: translateX(0%);
91
90
  }
92
91
 
93
92
  .bg-dark.is-active {
94
- opacity: 1;
95
- pointer-events: all;
93
+ opacity: 1;
94
+ pointer-events: all;
96
95
  }
97
96
 
98
97
  .is-side.bg-dark.is-active {
99
- opacity: 1;
100
- align-items: stretch;
98
+ opacity: 1;
99
+ align-items: stretch;
101
100
  }
102
101
 
103
102
  .is-side.is-active .modal {
104
- pointer-events: all;
103
+ pointer-events: all;
105
104
  }
106
105
 
107
106
  @media screen and (max-width: 910px) {
108
- .tool-bar {
109
- margin: -1rem 0rem 1rem;
110
- padding-bottom: 1rem;
111
- align-items: center;
112
- }
113
-
114
- .is-active.is-side .modal {
115
- margin-inline-end: 5%;
116
- margin-inline-start: 5%;
117
- }
118
- }
107
+ .tool-bar {
108
+ margin: -1rem 0rem 1rem;
109
+ padding-bottom: 1rem;
110
+ align-items: center;
111
+ }
112
+
113
+ .is-active.is-side .modal {
114
+ margin-inline-end: 5%;
115
+ margin-inline-start: 5%;
116
+ }
117
+ }
@@ -4,8 +4,7 @@
4
4
  }
5
5
 
6
6
  ::-webkit-scrollbar-track {
7
- /* border-left: 1px solid var(--bgl-gray-light); */
8
- /*-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
7
+ /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
9
8
  }
10
9
 
11
10
  ::-webkit-scrollbar-thumb {