@bagelink/vue 0.0.276 → 0.0.282

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,129 +1,150 @@
1
- /* h1,
2
- h2,
3
- h3,
4
- h4,
5
- h5,
6
- h6 {
7
- width: max-content;
8
- }
9
-
10
- h1 {}
11
-
12
- h2 {}
13
-
14
- h3 {}
15
-
16
- h4 {}
17
-
18
- h5 {}
19
-
20
- h6 {} */
21
-
22
1
  .txt-center {
23
- text-align: center;
2
+ text-align: center;
24
3
  }
25
4
 
26
5
  .txt-start {
27
- text-align: start;
6
+ text-align: start;
28
7
  }
29
8
 
30
9
  .txt-end {
31
- text-align: end;
10
+ text-align: end;
32
11
  }
33
12
 
34
13
  .smalltxt {
35
- font-size: 12px;
14
+ font-size: 12px;
36
15
  }
37
16
 
38
17
  .txt20 {
39
- font-size: 20px;
18
+ font-size: 20px;
40
19
  }
41
20
 
42
21
  .txt18 {
43
- font-size: 18px;
22
+ font-size: 18px;
44
23
  }
45
24
 
46
25
  .txt16 {
47
- font-size: 16px;
26
+ font-size: 16px;
48
27
  }
49
28
 
50
29
  .txt14 {
51
- font-size: 14px;
30
+ font-size: 14px;
52
31
  }
53
32
 
54
33
  .txt12 {
55
- font-size: 12px;
34
+ font-size: 12px;
56
35
  }
57
36
 
58
37
  .txt10 {
59
- font-size: 10px;
38
+ font-size: 10px;
60
39
  }
61
40
 
62
41
  .txt9 {
63
- font-size: 9px;
42
+ font-size: 9px;
64
43
  }
65
44
 
66
45
  .no-margin {
67
- margin: 0;
46
+ margin: 0;
68
47
  }
69
48
 
70
49
  .txtgray {
71
- color: var(--bgl-gray);
50
+ color: var(--bgl-gray);
72
51
  }
73
52
 
74
53
  .txtblue {
75
- color: var(--bgl-primary);
54
+ color: var(--bgl-primary);
76
55
  }
77
56
 
78
57
  .txtblack {
79
- color: var(--bgl-black);
58
+ color: var(--bgl-black);
80
59
  }
81
60
 
82
61
  .txtred {
83
- color: var(--bgl-red);
62
+ color: var(--bgl-red);
63
+ }
64
+
65
+ .txtwhite {
66
+ color: var(--bgl-white);
84
67
  }
85
68
 
86
69
  .font-light {
87
- font-weight: 100;
70
+ font-weight: 100;
88
71
  }
89
72
 
90
73
  .bold {
91
- font-weight: 700;
74
+ font-weight: 700;
92
75
  }
93
76
 
94
77
  .line-height-1 {
95
- line-height: 1;
78
+ line-height: 1;
96
79
  }
97
80
 
98
81
  .ellipsis {
99
- overflow: hidden;
100
- display: block;
101
- width: 100%;
102
- text-overflow: ellipsis;
82
+ overflow: hidden;
83
+ display: block;
84
+ width: 100%;
85
+ text-overflow: ellipsis;
86
+ }
87
+
88
+ .ellipsis-1,
89
+ .ellipsis-2,
90
+ .ellipsis-3,
91
+ .ellipsis-4,
92
+ .ellipsis-5,
93
+ .ellipsis-6 {
94
+ display: block;
95
+ display: -webkit-box;
96
+ max-width: 100%;
97
+ -webkit-box-orient: vertical;
98
+ overflow: hidden;
99
+ text-overflow: ellipsis;
100
+ }
101
+
102
+ .ellipsis-1 {
103
+ -webkit-line-clamp: 1;
104
+ }
105
+
106
+ .ellipsis-2 {
107
+ -webkit-line-clamp: 2;
108
+ }
109
+
110
+ .ellipsis-3 {
111
+ -webkit-line-clamp: 3;
112
+ }
113
+
114
+ .ellipsis-4 {
115
+ -webkit-line-clamp: 4;
116
+ }
117
+
118
+ .ellipsis-5 {
119
+ -webkit-line-clamp: 5;
120
+ }
121
+
122
+ .ellipsis-6 {
123
+ -webkit-line-clamp: 6;
103
124
  }
104
125
 
105
126
  .pointer {
106
- cursor: pointer;
127
+ cursor: pointer;
107
128
  }
108
129
 
109
130
  .decoration-none {
110
- text-decoration: none;
131
+ text-decoration: none;
111
132
  }
112
133
 
113
134
  .bgl_icon-font {
114
- font-family: "Material Symbols Outlined", serif;
135
+ font-family: "Material Symbols Outlined", serif;
115
136
  }
116
137
 
117
138
  @media screen and (max-width: 910px) {
118
- .txt20 {
119
- font-size: 18px;
120
- }
121
-
122
- .txt16 {
123
- font-size: 14px;
124
- }
125
-
126
- .txt14 {
127
- font-size: 12px;
128
- }
129
- }
139
+ .txt20 {
140
+ font-size: 18px;
141
+ }
142
+
143
+ .txt16 {
144
+ font-size: 14px;
145
+ }
146
+
147
+ .txt14 {
148
+ font-size: 12px;
149
+ }
150
+ }