signum 0.7.7 → 0.7.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: afc66ab9111c5abd8514d9886085a4009616b991088f8e942125fc193d3cb1b1
4
- data.tar.gz: 5e86e69e0e07f2cff2f377ceb9dc652e41d2ec31069649f7bd364c74b04583b4
3
+ metadata.gz: b1a703dbf5da5ca31e1275493f067a917802fb4caa606a6697e7fc64a62bbefa
4
+ data.tar.gz: f00fb2a6e2ea3639c5b2237498e0e2ba67bb421f230a7ef1d719653d4c083e23
5
5
  SHA512:
6
- metadata.gz: 0037367c3fbc51de0dacae3f556a6edfaed552c4dd1c6dc1b5ac6ae375d5f4fa59f1ab2c1d769851d5923b3a645ed4997ce979cc6cdd59924564cdd3f92cab12
7
- data.tar.gz: 706885e899ea2fe06c37e8191f45e17196dfd4a020a39633337f07d4f626555125a055196c4784feec9b202178e3164fa5e0fcc676ecc6599edfc3bf4f63bb61
6
+ metadata.gz: 810b2c5ebf4a0d36053780454cb1b5f2bac99fa81a5bf6d4b96d3f5fd7e9563428b7640cae4b10d4f7626e2683bdfe7f64630e26310d8b042a7c1e2cb4c8639f
7
+ data.tar.gz: 66e80f730d6c3ad91097c613742e51ed8f3809b2b2c55792b115732e18edab27ca9ac38666ff7e60fba48a249ba63aa9b16f87a43ae8bac9619f29c08495ee8f
@@ -2,95 +2,94 @@
2
2
  @apply flex flex-col w-full divide-y;
3
3
 
4
4
  &__mb {
5
- // main body
5
+ /* main body */
6
6
  @apply flex basis-full divide-x;
7
7
 
8
8
  &__bc {
9
- //body container
9
+ /* body container */
10
10
  @apply flex grow py-4 px-2 overflow-hidden;
11
11
 
12
12
  &__ic {
13
- //icon container
13
+ /* icon container */
14
14
  @apply grow-0 pl-2 pr-3;
15
-
16
- svg.info
17
- {
18
- //icon info
19
- @apply text-sky-400;
20
- }
21
15
 
22
- svg.success{
23
- //icon success
24
- @apply text-green-400;
25
- }
16
+ svg.info {
17
+ /* icon info */
18
+ @apply text-sky-400;
19
+ }
26
20
 
27
- svg.error{
28
- //icon error
29
- @apply text-red-400;
30
- }
21
+ svg.success {
22
+ /* icon success */
23
+ @apply text-green-400;
24
+ }
31
25
 
32
- svg.warning{
33
- //icon warning
34
- @apply text-orange-400;
26
+ svg.error {
27
+ /* icon error */
28
+ @apply text-red-400;
29
+ }
30
+
31
+ svg.warning {
32
+ /* icon warning */
33
+ @apply text-orange-400;
34
+ }
35
35
  }
36
- }
37
36
 
38
37
  &__mc {
39
- //main container
38
+ /* main container */
40
39
  @apply grow text-left break-words overflow-hidden;
41
40
 
42
41
  &__ti {
43
- // title
42
+ /* title */
44
43
  @apply text-[0.81rem] font-medium text-gray-900;
45
44
  }
46
45
 
47
46
  &__tx {
48
- //text
47
+ /* text */
49
48
  @apply text-xs text-gray-500 mt-1;
50
49
  }
51
50
 
52
51
  &__lkc {
53
- //links container
52
+ /* links container */
54
53
  @apply flex flex-wrap mt-3;
55
54
 
56
55
  &__lk {
57
- //link
56
+ /* link */
58
57
  @apply rounded-md text-xs font-medium text-gray-700 hover:text-gray-500 focus:outline-none mr-2;
59
58
  }
60
59
  }
61
60
 
62
61
  &__attc {
63
- //attachments links container
62
+ /* attachments links container */
64
63
  @apply flex flex-wrap mt-3;
65
64
 
66
65
  &__att {
67
- //attachment link
66
+ /* attachment link */
68
67
  @apply rounded-md text-xs font-medium text-gray-700 hover:text-gray-500 focus:outline-none mr-2;
69
68
  }
70
69
  }
71
70
  }
72
71
 
73
72
  &__bcc {
74
- //close button container
73
+ /* close button container */
75
74
  @apply grow-0 m-1;
76
75
 
77
76
  &__b {
78
- //button
77
+ /* button */
79
78
  @apply text-gray-400 hover:text-gray-500 cursor-pointer;
80
79
  }
81
80
  }
82
81
  }
83
82
 
84
83
  &__bmc {
85
- //buttons main container
84
+ /* buttons main container */
86
85
  @apply flex grow-0 flex-col divide-y divide-gray-200;
87
86
 
88
87
  &__bc {
89
- //buttons container
88
+ /* buttons container */
90
89
  @apply flex flex-1;
91
90
 
92
91
  &__b {
93
- //button
92
+ /* button */
94
93
  @apply flex w-full items-center justify-center text-xs font-medium text-gray-700 hover:text-gray-500 focus:outline-none px-4 py-3;
95
94
  }
96
95
  }
@@ -98,7 +97,7 @@
98
97
  }
99
98
 
100
99
  &__pbc {
101
- //progress bar container
100
+ /* progress bar container */
102
101
  @apply basis-full p-1;
103
102
  }
104
103
  }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Signum
4
- VERSION = "0.7.7"
4
+ VERSION = "0.7.8"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: signum
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.7
4
+ version: 0.7.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom de Grunt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-24 00:00:00.000000000 Z
11
+ date: 2024-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg