simplecov-tailwindcss 2.1.0 → 2.1.1
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.
- checksums.yaml +4 -4
- data/.all-contributorsrc +28 -0
- data/{CODE_OF_CONDUCT.md → .github/CODE_OF_CONDUCT.md} +1 -1
- data/.github/CONTRIBUTING.md +66 -0
- data/.github/ISSUE_TEMPLATE/config.yml +3 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +2 -2
- data/.github/workflows/lints.yml +1 -1
- data/.github/workflows/tests.yml +2 -2
- data/.rubocop.yml +0 -31
- data/.vscode/settings.json +5 -0
- data/README.md +33 -19
- data/lib/simplecov-tailwindcss/version.rb +1 -1
- data/lib/simplecov-tailwindcss.rb +2 -2
- data/package.json +21 -20
- data/public/application.css +1 -1
- data/public/application.js +2 -2
- data/yarn.lock +851 -603
- metadata +6 -5
- data/.github/ISSUE_TEMPLATE/question.yml +0 -26
- data/CONTRIBUTING.md +0 -132
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 88aa786589cd69f2c8de942c1f0d57bd8d9066d6e257b0fcc8b1b6e41a500306
|
|
4
|
+
data.tar.gz: 825f56e07ce49d20de9f934f7f566c47aa6003e51d54a472abbf6de86b702007
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 898411e7a9fbdc305a78d3957339f65cd322ebb5adae290ff03b2b11c50158adb669c214d0cb6489c685a6b6e892f05cb2841355c6aa51c065471da63c2fd01f
|
|
7
|
+
data.tar.gz: 836613c9e141c2a5cd791cce70e51ea0c5c99482686a84c8eeda485811f2741d058bf363255e99fa7de62710b5dce0319cd087e75f26b06969ac135981d018b4
|
data/.all-contributorsrc
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"files": [
|
|
3
|
+
"README.md"
|
|
4
|
+
],
|
|
5
|
+
"imageSize": 100,
|
|
6
|
+
"commit": false,
|
|
7
|
+
"contributors": [
|
|
8
|
+
{
|
|
9
|
+
"login": "chiefpansancolt",
|
|
10
|
+
"name": "Christopher Pezza",
|
|
11
|
+
"avatar_url": "https://avatars3.githubusercontent.com/u/5841177?v=4",
|
|
12
|
+
"profile": "https://chrispezza.me",
|
|
13
|
+
"contributions": [
|
|
14
|
+
"code",
|
|
15
|
+
"doc",
|
|
16
|
+
"tool",
|
|
17
|
+
"test",
|
|
18
|
+
"maintenance"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"contributorsPerLine": 7,
|
|
23
|
+
"projectName": "simplecov-tailwindcss",
|
|
24
|
+
"projectOwner": "chiefpansancolt",
|
|
25
|
+
"repoType": "github",
|
|
26
|
+
"repoHost": "https://github.com",
|
|
27
|
+
"skipCi": true
|
|
28
|
+
}
|
|
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
|
|
55
55
|
## Enforcement
|
|
56
56
|
|
|
57
57
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
-
reported by contacting the project team at chiefpansancolt
|
|
58
|
+
reported by contacting the project team at github@chiefpansancolt.live. All
|
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
61
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Contributing to Simplecov Tailwind
|
|
2
|
+
|
|
3
|
+
First and for most thank you for taking the time to look to contribute to
|
|
4
|
+
Simplecov Tailwind, any help is apprciated to make Simplecov Tailwind better
|
|
5
|
+
and stronger!
|
|
6
|
+
|
|
7
|
+
## Code of Conduct
|
|
8
|
+
|
|
9
|
+
This project and everyone participating in it is governed by the [Simplecov
|
|
10
|
+
Material Code of Conduct](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/CODE_OF_CONDUCT.md).
|
|
11
|
+
By participating, you are expected to uphold this code. Please report
|
|
12
|
+
unacceptable behavior to github@chiefpansancolt.live.
|
|
13
|
+
|
|
14
|
+
## How can I Contribute
|
|
15
|
+
|
|
16
|
+
### Reporting Bugs
|
|
17
|
+
|
|
18
|
+
#### Before submitting a bug report
|
|
19
|
+
|
|
20
|
+
This section guides you through submitting a bug report for Simplecov Tailwind.
|
|
21
|
+
Following these guidelines helps maintainers and the community understand your
|
|
22
|
+
report 📝, reproduce the behavior 💻 💻, and find related reports 🔎.
|
|
23
|
+
|
|
24
|
+
Before creating bug reports, please check [this list](https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
|
|
25
|
+
as you might find out that you don't need to create one. When you are creating
|
|
26
|
+
a bug report, please include as many details as possible. Fill out the
|
|
27
|
+
[required form](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/ISSUE_TEMPLATE/bug_report.md)
|
|
28
|
+
, the information it asks for helps us resolve issues faster.
|
|
29
|
+
|
|
30
|
+
> Note: If you find a Closed issue that seems like it is the same thing that you're experiencing, open a new issue and include a link to the original issue in the body of your new one.
|
|
31
|
+
|
|
32
|
+
## Suggesting Enhancements
|
|
33
|
+
|
|
34
|
+
This section guides you through submitting an enhancement suggestion for
|
|
35
|
+
Simplecov Tailwind, including completely new features and minor improvements to
|
|
36
|
+
existing functionality. Following these guidelines helps maintainers and the
|
|
37
|
+
community understand your suggestion 📝 and find related suggestions 🔎.
|
|
38
|
+
|
|
39
|
+
Before creating enhancement suggestions, please check [this list](https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement)
|
|
40
|
+
as you might find out that you don't need to create one. When you are creating
|
|
41
|
+
an enhancement suggestion, please include as many details as possible. Fill in
|
|
42
|
+
the [form](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/ISSUE_TEMPLATE/feature-request.md)
|
|
43
|
+
, including the steps that you imagine you would take if the feature you're
|
|
44
|
+
requesting existed.
|
|
45
|
+
|
|
46
|
+
## Code Contributions
|
|
47
|
+
|
|
48
|
+
Looking to contribute to Simplecov Tailwind? You can look for any tickets tagged with `help-wanted`
|
|
49
|
+
|
|
50
|
+
- [Help wanted issues](https://github.com/chiefpansancolt/simplecov-tailwindcss/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) - issues which could use help form the community to help complete
|
|
51
|
+
|
|
52
|
+
## Pull Requests
|
|
53
|
+
|
|
54
|
+
The process described here has several goals:
|
|
55
|
+
|
|
56
|
+
- Maintain Simplecov Tailwind's quality
|
|
57
|
+
- Fix problems that are important to users
|
|
58
|
+
- Engage the community in working toward the best possible Simplecov Tailwind Interaction
|
|
59
|
+
- Enable a sustainable system for Simplecov Tailwind's maintainers to review contributions
|
|
60
|
+
|
|
61
|
+
Please follow these steps to have your contribution considered by the maintainers:
|
|
62
|
+
|
|
63
|
+
- Follow all instructions in [the template](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/PULL_REQUEST_TEMPLATE.md)
|
|
64
|
+
- After you submit your pull request, verify that all status checks are passing<details><summary>What if the status checks are failing?</summary>If a status check is failing, and you believe that the failure is unrelated to your change, please leave a comment on the pull request explaining why you believe the failure is unrelated. A maintainer will re-run the status check for you. If we conclude that the failure was a false positive, then we will open an issue to track that problem with our status check suite.</details>
|
|
65
|
+
|
|
66
|
+
While the prerequisites above must be satisfied prior to having your pull request reviewed, the reviewer(s) may ask you to complete additional design work, tests, or other changes before your pull request can be ultimately accepted.
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
blank_issues_enabled: false
|
|
2
2
|
contact_links:
|
|
3
|
+
- name: Get Help
|
|
4
|
+
url: https://github.com/chiefpansancolt/simplecov-tailwindcss/discussions/new?category=help
|
|
5
|
+
about: If you can't get something to work the way you expect, open a question in our discussion forums.
|
|
3
6
|
- name: GitHub Community Support
|
|
4
7
|
url: https://github.community/
|
|
5
8
|
about: Please ask and answer questions here.
|
|
@@ -13,14 +13,14 @@ Please delete options that are not relevant.
|
|
|
13
13
|
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
|
14
14
|
- [ ] This change requires a documentation update
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
## How Has This Been Tested?
|
|
17
17
|
|
|
18
18
|
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
|
|
19
19
|
|
|
20
20
|
- [ ] Test A
|
|
21
21
|
- [ ] Test B
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
## Checklist
|
|
24
24
|
|
|
25
25
|
- [ ] My code follows the style guidelines of this project
|
|
26
26
|
- [ ] I have performed a self-review of my own code
|
data/.github/workflows/lints.yml
CHANGED
data/.github/workflows/tests.yml
CHANGED
|
@@ -8,7 +8,7 @@ jobs:
|
|
|
8
8
|
|
|
9
9
|
strategy:
|
|
10
10
|
matrix:
|
|
11
|
-
ruby: [3.1.2, 3.0.4, 2.7.6, 2.6.10, 2.5.9, head]
|
|
11
|
+
ruby: [3.2.1, 3.1.2, 3.0.4, 2.7.6, 2.6.10, 2.5.9, head]
|
|
12
12
|
|
|
13
13
|
steps:
|
|
14
14
|
- name: Checkout Code
|
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
|
|
21
21
|
- name: Build and Test
|
|
22
22
|
run: |
|
|
23
|
-
gem install bundler -v 2.3.
|
|
23
|
+
gem install bundler -v 2.3.26
|
|
24
24
|
bundle install --jobs 4 --retry 3
|
|
25
25
|
bundle exec rake test
|
|
26
26
|
- name: Upload coverage results
|
data/.rubocop.yml
CHANGED
|
@@ -170,13 +170,6 @@ Bundler/OrderedGems:
|
|
|
170
170
|
|
|
171
171
|
#################### Gemspec ###############################
|
|
172
172
|
|
|
173
|
-
Gemspec/DateAssignment:
|
|
174
|
-
Description: 'Checks that `date =` is not used in gemspec file, it is set automatically when the gem is packaged.'
|
|
175
|
-
Enabled: pending
|
|
176
|
-
VersionAdded: '1.10'
|
|
177
|
-
Include:
|
|
178
|
-
- '**/*.gemspec'
|
|
179
|
-
|
|
180
173
|
Gemspec/DependencyVersion:
|
|
181
174
|
Description: 'Requires or forbids specifying gem dependency versions.'
|
|
182
175
|
Enabled: false
|
|
@@ -1171,7 +1164,6 @@ Lint/AmbiguousBlockAssociation:
|
|
|
1171
1164
|
Enabled: true
|
|
1172
1165
|
VersionAdded: '0.48'
|
|
1173
1166
|
VersionChanged: '1.13'
|
|
1174
|
-
IgnoredMethods: []
|
|
1175
1167
|
|
|
1176
1168
|
Lint/AmbiguousOperator:
|
|
1177
1169
|
Description: >-
|
|
@@ -1530,7 +1522,6 @@ Lint/InheritException:
|
|
|
1530
1522
|
Lint/InterpolationCheck:
|
|
1531
1523
|
Description: 'Raise warning for interpolation in single q strs.'
|
|
1532
1524
|
Enabled: true
|
|
1533
|
-
Safe: false
|
|
1534
1525
|
VersionAdded: '0.50'
|
|
1535
1526
|
VersionChanged: '0.87'
|
|
1536
1527
|
|
|
@@ -1625,7 +1616,6 @@ Lint/NumberConversion:
|
|
|
1625
1616
|
VersionAdded: '0.53'
|
|
1626
1617
|
VersionChanged: '1.1'
|
|
1627
1618
|
SafeAutoCorrect: false
|
|
1628
|
-
IgnoredMethods: []
|
|
1629
1619
|
IgnoredClasses:
|
|
1630
1620
|
- Time
|
|
1631
1621
|
- DateTime
|
|
@@ -2060,7 +2050,6 @@ Metrics/AbcSize:
|
|
|
2060
2050
|
Enabled: true
|
|
2061
2051
|
VersionAdded: '0.27'
|
|
2062
2052
|
VersionChanged: '1.5'
|
|
2063
|
-
IgnoredMethods: []
|
|
2064
2053
|
CountRepeatedAttributes: true
|
|
2065
2054
|
Max: 17
|
|
2066
2055
|
|
|
@@ -2072,8 +2061,6 @@ Metrics/BlockLength:
|
|
|
2072
2061
|
CountComments: false
|
|
2073
2062
|
Max: 25
|
|
2074
2063
|
CountAsOne: []
|
|
2075
|
-
IgnoredMethods:
|
|
2076
|
-
- refine
|
|
2077
2064
|
Exclude:
|
|
2078
2065
|
- '**/*.gemspec'
|
|
2079
2066
|
|
|
@@ -2102,7 +2089,6 @@ Metrics/CyclomaticComplexity:
|
|
|
2102
2089
|
Enabled: true
|
|
2103
2090
|
VersionAdded: '0.25'
|
|
2104
2091
|
VersionChanged: '0.81'
|
|
2105
|
-
IgnoredMethods: []
|
|
2106
2092
|
Max: 7
|
|
2107
2093
|
|
|
2108
2094
|
Metrics/MethodLength:
|
|
@@ -2114,7 +2100,6 @@ Metrics/MethodLength:
|
|
|
2114
2100
|
CountComments: false
|
|
2115
2101
|
Max: 10
|
|
2116
2102
|
CountAsOne: []
|
|
2117
|
-
IgnoredMethods: []
|
|
2118
2103
|
|
|
2119
2104
|
Metrics/ModuleLength:
|
|
2120
2105
|
Description: 'Avoid modules longer than 100 lines of code.'
|
|
@@ -2142,7 +2127,6 @@ Metrics/PerceivedComplexity:
|
|
|
2142
2127
|
Enabled: true
|
|
2143
2128
|
VersionAdded: '0.25'
|
|
2144
2129
|
VersionChanged: '0.81'
|
|
2145
|
-
IgnoredMethods: []
|
|
2146
2130
|
Max: 8
|
|
2147
2131
|
|
|
2148
2132
|
################## Migration #############################
|
|
@@ -2635,10 +2619,6 @@ Style/BlockDelimiters:
|
|
|
2635
2619
|
- let!
|
|
2636
2620
|
- subject
|
|
2637
2621
|
- watch
|
|
2638
|
-
IgnoredMethods:
|
|
2639
|
-
- lambda
|
|
2640
|
-
- proc
|
|
2641
|
-
- it
|
|
2642
2622
|
AllowBracesOnProceduralOneLiners: false
|
|
2643
2623
|
BracesRequiredMethods: []
|
|
2644
2624
|
|
|
@@ -2689,10 +2669,6 @@ Style/ClassEqualityComparison:
|
|
|
2689
2669
|
StyleGuide: '#instance-of-vs-class-comparison'
|
|
2690
2670
|
Enabled: true
|
|
2691
2671
|
VersionAdded: '0.93'
|
|
2692
|
-
IgnoredMethods:
|
|
2693
|
-
- ==
|
|
2694
|
-
- equal?
|
|
2695
|
-
- eql?
|
|
2696
2672
|
|
|
2697
2673
|
Style/ClassMethods:
|
|
2698
2674
|
Description: 'Use self when defining module/class methods.'
|
|
@@ -3099,7 +3075,6 @@ Style/FormatStringToken:
|
|
|
3099
3075
|
MaxUnannotatedPlaceholdersAllowed: 1
|
|
3100
3076
|
VersionAdded: '0.49'
|
|
3101
3077
|
VersionChanged: '1.0'
|
|
3102
|
-
IgnoredMethods: []
|
|
3103
3078
|
|
|
3104
3079
|
Style/FrozenStringLiteralComment:
|
|
3105
3080
|
Description: >-
|
|
@@ -3383,7 +3358,6 @@ Style/MethodCallWithArgsParentheses:
|
|
|
3383
3358
|
VersionAdded: '0.47'
|
|
3384
3359
|
VersionChanged: '1.7'
|
|
3385
3360
|
IgnoreMacros: true
|
|
3386
|
-
IgnoredMethods: []
|
|
3387
3361
|
AllowedPatterns: []
|
|
3388
3362
|
IncludedMacros: []
|
|
3389
3363
|
AllowParenthesesInMultilineCall: false
|
|
@@ -3399,7 +3373,6 @@ Style/MethodCallWithoutArgsParentheses:
|
|
|
3399
3373
|
Description: 'Do not use parentheses for method calls with no arguments.'
|
|
3400
3374
|
StyleGuide: '#method-invocation-parens'
|
|
3401
3375
|
Enabled: true
|
|
3402
|
-
IgnoredMethods: []
|
|
3403
3376
|
VersionAdded: '0.47'
|
|
3404
3377
|
VersionChanged: '0.55'
|
|
3405
3378
|
|
|
@@ -3737,7 +3710,6 @@ Style/NumericPredicate:
|
|
|
3737
3710
|
SupportedStyles:
|
|
3738
3711
|
- predicate
|
|
3739
3712
|
- comparison
|
|
3740
|
-
IgnoredMethods: []
|
|
3741
3713
|
Exclude:
|
|
3742
3714
|
- 'spec/**/*'
|
|
3743
3715
|
|
|
@@ -4339,9 +4311,6 @@ Style/SymbolProc:
|
|
|
4339
4311
|
VersionAdded: '0.26'
|
|
4340
4312
|
VersionChanged: '1.28'
|
|
4341
4313
|
AllowMethodsWithArguments: false
|
|
4342
|
-
IgnoredMethods:
|
|
4343
|
-
- respond_to
|
|
4344
|
-
- define_method
|
|
4345
4314
|
AllowComments: false
|
|
4346
4315
|
|
|
4347
4316
|
Style/TernaryParentheses:
|
data/README.md
CHANGED
|
@@ -1,25 +1,17 @@
|
|
|
1
1
|
# Simplecov Tailwind
|
|
2
2
|
|
|
3
|
-
](/LICENSE)
|
|
4
|
+
[](https://github.com/chiefpansancolt/simplecov-tailwindcss/actions/workflows/tests.yml)
|
|
5
|
+
[](https://github.com/chiefpansancolt/simplecov-tailwindcss/actions/workflows/builds.yml)
|
|
6
|
+
[](https://github.com/chiefpansancolt/simplecov-tailwindcss/actions/workflows/lints.yml)
|
|
7
|
+
[](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases)
|
|
8
|
+
[](https://rubygems.org/gems/simplecov-tailwindcss)
|
|
9
|
+
[](https://discord.gg/pBxGpfrmD4)
|
|
9
10
|
|
|
10
11
|
> Note: To learn more about SimpleCov, check out the main repo at https://github.com/colszowka/simplecov
|
|
11
12
|
|
|
12
13
|
Generates a HTML Tailwind Design report generated from Simplecov using ruby 2.5 or greater.
|
|
13
14
|
|
|
14
|
-
## Table of Contents
|
|
15
|
-
|
|
16
|
-
- [Installing](#installing)
|
|
17
|
-
- [Usage](#usage)
|
|
18
|
-
- [Change Log](#change-log)
|
|
19
|
-
- [Contributing](#contributing)
|
|
20
|
-
- [Development](#development)
|
|
21
|
-
- [License](#license)
|
|
22
|
-
|
|
23
15
|
## Installing
|
|
24
16
|
|
|
25
17
|
Add the below to your Gemfile to make Simplecov Material available as a formatter for your application.
|
|
@@ -80,13 +72,13 @@ SimpleCov.formatters =
|
|
|
80
72
|
|
|
81
73
|
## Change Log
|
|
82
74
|
|
|
83
|
-
Check out the [Change Log](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/
|
|
75
|
+
Check out the [Change Log](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/CHANGELOG.md) for new breaking changes/features/bug fixes per release of a new version.
|
|
84
76
|
|
|
85
77
|
## Contributing
|
|
86
78
|
|
|
87
|
-
Bug Reports, Feature Requests, and Pull Requests are welcome on GitHub at https://github.com/chiefpansancolt/simplecov-tailwindcss. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/
|
|
79
|
+
Bug Reports, Feature Requests, and Pull Requests are welcome on GitHub at https://github.com/chiefpansancolt/simplecov-tailwindcss. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/CODE_OF_CONDUCT.md) code of conduct.
|
|
88
80
|
|
|
89
|
-
To see more about Contributing check out this [document](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/
|
|
81
|
+
To see more about Contributing check out this [document](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/.github/CONTRIBUTING.md).
|
|
90
82
|
|
|
91
83
|
- Fork Repo and create new branch
|
|
92
84
|
- Once all is changed and committed create a pull request.
|
|
@@ -107,4 +99,26 @@ To install this gem onto your local machine, run `yarn gem:build`. Gems will be
|
|
|
107
99
|
|
|
108
100
|
## License
|
|
109
101
|
|
|
110
|
-
Simplecov Tailwind is available as open source under the terms of the [MIT License](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/
|
|
102
|
+
Simplecov Tailwind is available as open source under the terms of the [MIT License](https://github.com/chiefpansancolt/simplecov-tailwindcss/blob/main/LICENSE).
|
|
103
|
+
|
|
104
|
+
## Contributors ✨
|
|
105
|
+
|
|
106
|
+
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
107
|
+
|
|
108
|
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
109
|
+
<!-- prettier-ignore-start -->
|
|
110
|
+
<!-- markdownlint-disable -->
|
|
111
|
+
<table>
|
|
112
|
+
<tr>
|
|
113
|
+
<td align="center"><a href="https://chrispezza.me"><img src="https://avatars3.githubusercontent.com/u/5841177?v=4" width="100px;" alt=""/><br /><sub><b>Christopher Pezza</b></sub></a><br /><a href="https://github.com/chiefpansancolt/simplecov-tailwindcss/commits?author=chiefpansancolt" title="Code">💻</a> <a href="https://github.com/chiefpansancolt/simplecov-tailwindcss/commits?author=chiefpansancolt" title="Documentation">📖</a> <a href="#tool-chiefpansancolt" title="Tools">🔧</a> <a href="https://github.com/chiefpansancolt/simplecov-tailwindcss/commits?author=chiefpansancolt" title="Tests">⚠️</a> <a href="#maintenance-chiefpansancolt" title="Maintenance">🚧</a></td>
|
|
114
|
+
</tr>
|
|
115
|
+
</table>
|
|
116
|
+
|
|
117
|
+
<!-- markdownlint-enable -->
|
|
118
|
+
<!-- prettier-ignore-end -->
|
|
119
|
+
|
|
120
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
121
|
+
|
|
122
|
+
This project follows the
|
|
123
|
+
[all-contributors](https://github.com/all-contributors/all-contributors)
|
|
124
|
+
specification. Contributions of any kind welcome!
|
|
@@ -32,8 +32,8 @@ module SimpleCov
|
|
|
32
32
|
|
|
33
33
|
def output_message(result)
|
|
34
34
|
"Coverage report generated for #{result.command_name} to " \
|
|
35
|
-
"#{output_path}. #{result.covered_lines} / #{result.total_lines} LOC" \
|
|
36
|
-
"
|
|
35
|
+
"#{output_path}. #{result.covered_lines} / #{result.total_lines} LOC " \
|
|
36
|
+
"(#{result.covered_percent.round(2)}%) covered."
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
def branchable_result?
|
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simplecov-tailwind",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "HTML tailwind Design View for Simplecov formatter",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npm-run-all build:*",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"test:start": "bundle exec rake test",
|
|
10
10
|
"test:open": "open coverage/index.html",
|
|
11
11
|
"test": "npm-run-all test:*",
|
|
12
|
-
"lint:markdown": "markdownlint CHANGELOG.md CODE_OF_CONDUCT.md CONTRIBUTING.md README.md -c .markdownlint.yml",
|
|
12
|
+
"lint:markdown": "markdownlint CHANGELOG.md .github/CODE_OF_CONDUCT.md .github/CONTRIBUTING.md README.md .github/PULL_REQUEST_TEMPLATE.md -c .markdownlint.yml",
|
|
13
13
|
"lint:ruby": "rubocop",
|
|
14
14
|
"lint:erb": "bundle exec erblint --lint-all",
|
|
15
15
|
"lint:javascript": "eslint dist",
|
|
@@ -20,43 +20,44 @@
|
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/chiefpansancolt/simplecov-
|
|
23
|
+
"url": "https://github.com/chiefpansancolt/simplecov-tailwindcss"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
26
|
"simplecov",
|
|
27
27
|
"simplecov-formatter",
|
|
28
28
|
"simplecov-tailwind"
|
|
29
29
|
],
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/chiefpansancolt/simplecov-tailwindcss/issues"
|
|
33
|
+
},
|
|
30
34
|
"author": {
|
|
31
35
|
"name": "Christopher Pezza",
|
|
32
36
|
"email": "github@chiefpansancolt.live"
|
|
33
37
|
},
|
|
34
|
-
"license": "MIT",
|
|
35
|
-
"bugs": {
|
|
36
|
-
"url": "https://github.com/chiefpansancolt/simplecov-tailwind/issues"
|
|
37
|
-
},
|
|
38
38
|
"contributors": [
|
|
39
39
|
{
|
|
40
40
|
"name": "Christopher Pezza",
|
|
41
|
-
"email": "github@chiefpansancolt.live"
|
|
41
|
+
"email": "github@chiefpansancolt.live",
|
|
42
|
+
"url": "https://chiefpansancolt.live"
|
|
42
43
|
}
|
|
43
44
|
],
|
|
44
|
-
"homepage": "https://chiefpansancolt.live/docs/
|
|
45
|
+
"homepage": "https://chiefpansancolt.live/docs/simplecov_tailwindcss/",
|
|
45
46
|
"babel": {},
|
|
46
47
|
"devDependencies": {
|
|
47
|
-
"@babel/core": "^7.
|
|
48
|
-
"@babel/eslint-parser": "^7.
|
|
49
|
-
"@hotwired/stimulus": "^3.
|
|
50
|
-
"@prettier/plugin-ruby": "^2.
|
|
51
|
-
"@tailwindcss/forms": "^0.5.
|
|
52
|
-
"@tailwindcss/typography": "^0.5.
|
|
53
|
-
"esbuild": "^0.
|
|
54
|
-
"eslint": "^8.
|
|
55
|
-
"markdownlint": "^0.
|
|
48
|
+
"@babel/core": "^7.21.3",
|
|
49
|
+
"@babel/eslint-parser": "^7.21.3",
|
|
50
|
+
"@hotwired/stimulus": "^3.2.1",
|
|
51
|
+
"@prettier/plugin-ruby": "^3.2.2",
|
|
52
|
+
"@tailwindcss/forms": "^0.5.3",
|
|
53
|
+
"@tailwindcss/typography": "^0.5.9",
|
|
54
|
+
"esbuild": "^0.17.12",
|
|
55
|
+
"eslint": "^8.36.0",
|
|
56
|
+
"markdownlint": "^0.27.0",
|
|
56
57
|
"npm-run-all": "^4.1.5",
|
|
57
|
-
"prettier": "^2.
|
|
58
|
+
"prettier": "^2.8.4",
|
|
58
59
|
"prettier-plugin-erb": "^0.4.0",
|
|
59
|
-
"tailwindcss": "^3.
|
|
60
|
+
"tailwindcss": "^3.2.7",
|
|
60
61
|
"timeago.js": "^4.0.2"
|
|
61
62
|
}
|
|
62
63
|
}
|
data/public/application.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tailwindcss v3.0.24 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow:0 0 #0000}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,select:focus,textarea:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;print-color-adjust:exact}[multiple]{background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow:0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:#0000;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=checkbox]:indeterminate,[type=radio]:checked:focus,[type=radio]:checked:hover{border-color:#0000;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-size:100% 100%;background-position:50%;background-repeat:no-repeat}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{border-color:#0000;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:-webkit-sticky;position:sticky}.inset-0{right:0;left:0}.inset-0,.inset-y-0{top:0;bottom:0}.top-0{top:0}.bottom-0{bottom:0}.left-28{left:7rem}.top-\[8\.125rem\]{top:8.125rem}.right-auto{right:auto}.left-0{left:0}.right-0{right:0}.z-40{z-index:40}.z-20{z-index:20}.z-0{z-index:0}.z-50{z-index:50}.col-span-1{grid-column:span 1/span 1}.float-right{float:right}.mx-auto{margin-left:auto;margin-right:auto}.mx-4{margin-left:1rem;margin-right:1rem}.mt-1{margin-top:.25rem}.ml-12{margin-left:3rem}.ml-1{margin-left:.25rem}.mr-4{margin-right:1rem}.mt-2{margin-top:.5rem}.mt-14{margin-top:3.5rem}.-ml-0\.5{margin-left:-.125rem}.-ml-0{margin-left:0}.mt-3{margin-top:.75rem}.ml-6{margin-left:1.5rem}.-ml-px{margin-left:-1px}.ml-3{margin-left:.75rem}.-ml-8{margin-left:-2rem}.mb-16{margin-bottom:4rem}.mb-12{margin-bottom:3rem}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.hidden{display:none}.h-full{height:100%}.h-5{height:1.25rem}.h-6{height:1.5rem}.w-full{width:100%}.w-5{width:1.25rem}.w-\[19\.5rem\]{width:19.5rem}.w-80{width:20rem}.w-96{width:24rem}.w-6{width:1.5rem}.w-28{width:7rem}.w-screen{width:100vw}.min-w-0{min-width:0}.max-w-full{max-width:100%}.max-w-3xl{max-width:48rem}.flex-1{flex:1 1 0%}.flex-none{flex:none}.flex-shrink-0{flex-shrink:0}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-x-full{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-full{--tw-translate-x:100%}.cursor-pointer{cursor:pointer}.list-decimal{list-style-type:decimal}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-between{justify-content:space-between}.gap-5{gap:1.25rem}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.divide-x>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px*var(--tw-divide-x-reverse));border-left-width:calc(1px*(1 - var(--tw-divide-x-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px*var(--tw-divide-y-reverse))}.divide-slate-300>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(203 213 225/var(--tw-divide-opacity))}.divide-slate-900\/10>:not([hidden])~:not([hidden]){border-color:#0f172a1a}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.overflow-y-scroll{overflow-y:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-normal{white-space:normal}.whitespace-pre-wrap{white-space:pre-wrap}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.border{border-width:1px}.border-l-4{border-left-width:4px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-l{border-left-width:1px}.border-solid{border-style:solid}.border-gray-700{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.border-slate-900\/10{border-color:#0f172a1a}.border-slate-200{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.border-green-500{--tw-border-opacity:1;border-color:rgb(34 197 94/var(--tw-border-opacity))}.border-red-500{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.border-yellow-500{--tw-border-opacity:1;border-color:rgb(234 179 8/var(--tw-border-opacity))}.border-slate-900{--tw-border-opacity:1;border-color:rgb(15 23 42/var(--tw-border-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.bg-blue-700{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-white\/95{background-color:#fffffff2}.bg-gray-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.bg-opacity-75{--tw-bg-opacity:0.75}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.from-white{--tw-gradient-from:#fff;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#fff0)}.fill-sky-400\/20{fill:#38bdf833}.fill-sky-500{fill:#0ea5e9}.stroke-sky-500{stroke:#0ea5e9}.p-4{padding:1rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-0{padding-top:0;padding-bottom:0}.py-4{padding-top:1rem;padding-bottom:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.pr-2{padding-right:.5rem}.pl-2{padding-left:.5rem}.pb-2{padding-bottom:.5rem}.pr-4{padding-right:1rem}.pr-36{padding-right:9rem}.pb-10{padding-bottom:2.5rem}.pl-\[25\.5rem\]{padding-left:25.5rem}.pl-3{padding-left:.75rem}.pl-10{padding-left:2.5rem}.pr-3{padding-right:.75rem}.pr-10{padding-right:2.5rem}.pt-4{padding-top:1rem}.text-center{text-align:center}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.text-base{font-size:1rem;line-height:1.5rem}.font-medium{font-weight:500}.font-bold{font-weight:700}.font-semibold{font-weight:600}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.text-slate-100{--tw-text-opacity:1;color:rgb(241 245 249/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-slate-300{--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-blue-700{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.text-blue-200{--tw-text-opacity:1;color:rgb(191 219 254/var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.text-slate-400{--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.text-slate-800{--tw-text-opacity:1;color:rgb(30 41 59/var(--tw-text-opacity))}.text-slate-600{--tw-text-opacity:1;color:rgb(71 85 105/var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.placeholder-slate-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(100 116 139/var(--tw-placeholder-opacity))}.placeholder-slate-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(100 116 139/var(--tw-placeholder-opacity))}.placeholder-slate-500::placeholder{--tw-placeholder-opacity:1;color:rgb(100 116 139/var(--tw-placeholder-opacity))}.opacity-100{opacity:1}.opacity-0{opacity:0}.shadow-xl{--tw-shadow:0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color)}.shadow-sm,.shadow-xl{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition-colors{transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-500{transition-duration:.5s}.odd\:bg-green-400:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(74 222 128/var(--tw-bg-opacity))}.odd\:bg-red-400:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(248 113 113/var(--tw-bg-opacity))}.odd\:bg-yellow-400:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(250 204 21/var(--tw-bg-opacity))}.odd\:bg-slate-200:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.even\:bg-green-300:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(134 239 172/var(--tw-bg-opacity))}.even\:bg-red-300:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(252 165 165/var(--tw-bg-opacity))}.even\:bg-yellow-300:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(253 224 71/var(--tw-bg-opacity))}.even\:bg-slate-100:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.hover\:bg-blue-700:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.hover\:text-slate-300:hover{--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.focus\:border-blue-700:focus{--tw-border-opacity:1;border-color:rgb(29 78 216/var(--tw-border-opacity))}.focus\:focus\:placeholder-slate-400:focus:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(148 163 184/var(--tw-placeholder-opacity))}.focus\:focus\:placeholder-slate-400:focus:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(148 163 184/var(--tw-placeholder-opacity))}.focus\:focus\:placeholder-slate-400:focus:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(148 163 184/var(--tw-placeholder-opacity))}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-blue-700:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(29 78 216/var(--tw-ring-opacity))}.focus\:ring-white:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.group:hover .group-hover\:text-slate-300{--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}.dark .dark\:inline{display:inline}.dark .dark\:hidden{display:none}.dark .dark\:divide-slate-50\/\[0\.06\]>:not([hidden])~:not([hidden]){border-color:#f8fafc0f}.dark .dark\:border-slate-50\/\[0\.2\]{border-color:#f8fafc33}.dark .dark\:border-slate-300\/10{border-color:#cbd5e11a}.dark .dark\:bg-slate-900{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.dark .dark\:bg-transparent{background-color:initial}.dark .dark\:from-slate-900{--tw-gradient-from:#0f172a;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#0f172a00)}.dark .dark\:text-slate-400{--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}.dark .dark\:text-slate-200{--tw-text-opacity:1;color:rgb(226 232 240/var(--tw-text-opacity))}.dark .dark\:odd\:bg-slate-700:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}.dark .dark\:even\:bg-slate-600:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}@media (min-width:640px){.sm\:-ml-10{margin-left:-2.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pr-4{padding-right:1rem}}@media (min-width:768px){.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:max-w-3xl{max-width:48rem}}@media (min-width:1024px){.lg\:mx-0{margin-left:0;margin-right:0}.lg\:mt-0{margin-top:0}.lg\:ml-6{margin-left:1.5rem}.lg\:flex{display:flex}.lg\:max-w-none{max-width:none}.lg\:border-0{border-width:0}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:text-sm{font-size:.875rem;line-height:1.25rem}.lg\:leading-6{line-height:1.5rem}}@media (min-width:1280px){.xl\:px-0{padding-left:0;padding-right:0}}
|
|
1
|
+
/*! tailwindcss v3.2.7 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow:0 0 #0000}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,select:focus,textarea:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple]{background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow:0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:#0000;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=checkbox]:indeterminate,[type=radio]:checked:focus,[type=radio]:checked:hover{border-color:#0000;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-size:100% 100%;background-position:50%;background-repeat:no-repeat}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{border-color:#0000;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{right:0;left:0}.inset-0,.inset-y-0{top:0;bottom:0}.bottom-0{bottom:0}.left-0{left:0}.left-28{left:7rem}.right-0{right:0}.right-auto{right:auto}.top-0{top:0}.top-\[8\.125rem\]{top:8.125rem}.z-0{z-index:0}.z-20{z-index:20}.z-40{z-index:40}.z-50{z-index:50}.col-span-1{grid-column:span 1/span 1}.float-right{float:right}.mx-4{margin-left:1rem;margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.-ml-0{margin-left:0}.-ml-0\.5{margin-left:-.125rem}.-ml-8{margin-left:-2rem}.-ml-px{margin-left:-1px}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.ml-1{margin-left:.25rem}.ml-12{margin-left:3rem}.ml-3{margin-left:.75rem}.ml-6{margin-left:1.5rem}.mr-4{margin-right:1rem}.mt-1{margin-top:.25rem}.mt-14{margin-top:3.5rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.hidden{display:none}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-full{height:100%}.w-28{width:7rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-80{width:20rem}.w-96{width:24rem}.w-\[19\.5rem\]{width:19.5rem}.w-full{width:100%}.w-screen{width:100vw}.min-w-0{min-width:0}.max-w-3xl{max-width:48rem}.max-w-full{max-width:100%}.flex-1{flex:1 1 0%}.flex-none{flex:none}.flex-shrink-0{flex-shrink:0}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-x-full{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-full{--tw-translate-x:100%}.cursor-pointer{cursor:pointer}.list-decimal{list-style-type:decimal}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-between{justify-content:space-between}.gap-5{gap:1.25rem}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.divide-x>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px*var(--tw-divide-x-reverse));border-left-width:calc(1px*(1 - var(--tw-divide-x-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px*var(--tw-divide-y-reverse))}.divide-slate-300>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(203 213 225/var(--tw-divide-opacity))}.divide-slate-900\/10>:not([hidden])~:not([hidden]){border-color:#0f172a1a}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.overflow-y-scroll{overflow-y:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-normal{white-space:normal}.whitespace-pre-wrap{white-space:pre-wrap}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-l{border-left-width:1px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-solid{border-style:solid}.border-gray-700{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.border-green-500{--tw-border-opacity:1;border-color:rgb(34 197 94/var(--tw-border-opacity))}.border-red-500{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.border-slate-200{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.border-slate-900{--tw-border-opacity:1;border-color:rgb(15 23 42/var(--tw-border-opacity))}.border-slate-900\/10{border-color:#0f172a1a}.border-yellow-500{--tw-border-opacity:1;border-color:rgb(234 179 8/var(--tw-border-opacity))}.bg-blue-700{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-white\/95{background-color:#fffffff2}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.bg-opacity-75{--tw-bg-opacity:0.75}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.from-white{--tw-gradient-from:#fff;--tw-gradient-to:#fff0;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.fill-sky-400\/20{fill:#38bdf833}.fill-sky-500{fill:#0ea5e9}.stroke-sky-500{stroke:#0ea5e9}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0{padding-top:0;padding-bottom:0}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.pb-10{padding-bottom:2.5rem}.pb-2{padding-bottom:.5rem}.pl-10{padding-left:2.5rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-\[25\.5rem\]{padding-left:25.5rem}.pr-10{padding-right:2.5rem}.pr-2{padding-right:.5rem}.pr-3{padding-right:.75rem}.pr-36{padding-right:9rem}.pr-4{padding-right:1rem}.pt-4{padding-top:1rem}.text-center{text-align:center}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.text-blue-200{--tw-text-opacity:1;color:rgb(191 219 254/var(--tw-text-opacity))}.text-blue-700{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-slate-100{--tw-text-opacity:1;color:rgb(241 245 249/var(--tw-text-opacity))}.text-slate-300{--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}.text-slate-400{--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.text-slate-600{--tw-text-opacity:1;color:rgb(71 85 105/var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.text-slate-800{--tw-text-opacity:1;color:rgb(30 41 59/var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.placeholder-slate-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(100 116 139/var(--tw-placeholder-opacity))}.placeholder-slate-500::placeholder{--tw-placeholder-opacity:1;color:rgb(100 116 139/var(--tw-placeholder-opacity))}.opacity-0{opacity:0}.opacity-100{opacity:1}.shadow-md{--tw-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-md,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-xl{--tw-shadow:0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-500{transition-duration:.5s}.odd\:bg-green-400:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(74 222 128/var(--tw-bg-opacity))}.odd\:bg-red-400:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(248 113 113/var(--tw-bg-opacity))}.odd\:bg-slate-200:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.odd\:bg-yellow-400:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(250 204 21/var(--tw-bg-opacity))}.even\:bg-green-300:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(134 239 172/var(--tw-bg-opacity))}.even\:bg-red-300:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(252 165 165/var(--tw-bg-opacity))}.even\:bg-slate-100:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.even\:bg-yellow-300:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(253 224 71/var(--tw-bg-opacity))}.hover\:bg-blue-700:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.hover\:text-slate-300:hover{--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.focus\:border-blue-700:focus{--tw-border-opacity:1;border-color:rgb(29 78 216/var(--tw-border-opacity))}.focus\:focus\:placeholder-slate-400:focus:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(148 163 184/var(--tw-placeholder-opacity))}.focus\:focus\:placeholder-slate-400:focus:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(148 163 184/var(--tw-placeholder-opacity))}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-blue-700:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(29 78 216/var(--tw-ring-opacity))}.focus\:ring-white:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.group:hover .group-hover\:text-slate-300{--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity))}.dark .dark\:inline{display:inline}.dark .dark\:hidden{display:none}.dark .dark\:divide-slate-50\/\[0\.06\]>:not([hidden])~:not([hidden]){border-color:#f8fafc0f}.dark .dark\:border-slate-300\/10{border-color:#cbd5e11a}.dark .dark\:border-slate-50\/\[0\.2\]{border-color:#f8fafc33}.dark .dark\:bg-slate-900{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.dark .dark\:bg-transparent{background-color:initial}.dark .dark\:from-slate-900{--tw-gradient-from:#0f172a;--tw-gradient-to:#0f172a00;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.dark .dark\:text-slate-200{--tw-text-opacity:1;color:rgb(226 232 240/var(--tw-text-opacity))}.dark .dark\:text-slate-400{--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity))}.dark .dark\:odd\:bg-slate-700:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}.dark .dark\:even\:bg-slate-600:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}@media (min-width:640px){.sm\:-ml-10{margin-left:-2.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pr-4{padding-right:1rem}}@media (min-width:768px){.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:max-w-3xl{max-width:48rem}}@media (min-width:1024px){.lg\:mx-0{margin-left:0;margin-right:0}.lg\:ml-6{margin-left:1.5rem}.lg\:mt-0{margin-top:0}.lg\:flex{display:flex}.lg\:max-w-none{max-width:none}.lg\:border-0{border-width:0}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:text-sm{font-size:.875rem;line-height:1.25rem}.lg\:leading-6{line-height:1.5rem}}@media (min-width:1280px){.xl\:px-0{padding-left:0;padding-right:0}}
|