@spark-hire/bootstrap-themes 2.0.0-video-transcripts-2 → 2.0.0

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.
@@ -0,0 +1,95 @@
1
+ name: auto-release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ pull_request:
9
+ branches:
10
+ - master
11
+ - major/*
12
+ - minor/*
13
+ - patch/*
14
+
15
+ jobs:
16
+ release:
17
+ runs-on: ubuntu-latest
18
+
19
+ if: "!contains(github.event.head_commit.message, 'skip ci') && !contains(github.event.head_commit.message, 'skip ci')"
20
+
21
+ steps:
22
+ - name: Echo event deets
23
+ run: |
24
+ echo ${{ github.event_name }}
25
+ echo ${{ github.base_ref }}
26
+ echo ${{ github.head_ref }}
27
+
28
+ - name: Checkout
29
+ uses: actions/checkout@v2
30
+ with:
31
+ token: ${{ secrets.GH_PAT }}
32
+
33
+ - name: Fetch tags
34
+ run: git fetch --unshallow --tags
35
+
36
+ - name: Setup node
37
+ uses: actions/setup-node@v3
38
+ with:
39
+ registry-url: https://registry.npmjs.org
40
+ node-version: '16.x'
41
+
42
+ - name: Npm install
43
+ run: npm ci --ignore-scripts
44
+ env:
45
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_PUBLISH }}
46
+
47
+ - name: Load node-sass cache
48
+ id: cache-node-sass
49
+ uses: actions/cache@v3
50
+ with:
51
+ path: ./node_modules/node-sass/vendor/linux-x64-93/
52
+ key: ${{ runner.os }}-build-cache-node-sass-${{ hashFiles('**/package-lock.json') }}
53
+
54
+ - if: ${{ steps.cache-node-sass.outputs.cache-hit != 'true' }}
55
+ name: Build node-sass
56
+ run: npm run --prefix node_modules/node-sass/ postinstall
57
+
58
+ - if: ${{ (startsWith(github.head_ref, 'major/') || startsWith(github.head_ref, 'minor/') || startsWith(github.head_ref, 'patch/') || startsWith(github.head_ref, 'master')) && github.event_name == 'pull_request' }}
59
+ name: Compile sass and push to head
60
+ run: |
61
+ npm run build
62
+
63
+ - name: Temporarily allow force pushes
64
+ uses: benjefferies/branch-protection-bot@master
65
+ if: always()
66
+ with:
67
+ access_token: ${{ secrets.GH_PAT }}
68
+ branch: ${{ github.event.repository.default_branch }}
69
+
70
+ - if: ${{ (startsWith(github.head_ref, 'major/') || startsWith(github.head_ref, 'minor/') || startsWith(github.head_ref, 'patch/') || startsWith(github.head_ref, 'master')) && github.event_name == 'pull_request' }}
71
+ name: Do canary release
72
+ env:
73
+ GITHUB_TOKEN: ${{ secrets.GH_PAT }}
74
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN_PUBLISH }}
75
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_PUBLISH }}
76
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_RELEASE_CHANNEL }}
77
+ run: |
78
+ npx auto canary
79
+
80
+ - if: startsWith(github.event.ref, 'refs/heads/master') && github.event_name == 'push'
81
+ name: Ship release
82
+ env:
83
+ GITHUB_TOKEN: ${{ secrets.GH_PAT }}
84
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN_PUBLISH }}
85
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_PUBLISH }}
86
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_RELEASE_CHANNEL }}
87
+ run: |
88
+ npx auto shipit
89
+
90
+ - name: Disable allow force pushes
91
+ uses: benjefferies/branch-protection-bot@master
92
+ if: always()
93
+ with:
94
+ access_token: ${{ secrets.GH_PAT }}
95
+ branch: ${{ github.event.repository.default_branch }}
@@ -0,0 +1,32 @@
1
+ name: labeled
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ types: [opened, labeled, unlabeled, synchronize]
8
+
9
+ jobs:
10
+ labeled:
11
+ runs-on: ubuntu-latest
12
+
13
+ permissions:
14
+ issues: write
15
+ pull-requests: write
16
+
17
+ steps:
18
+ - name: Has release tag
19
+ uses: mheap/github-action-required-labels@v5
20
+ with:
21
+ mode: exactly
22
+ count: 1
23
+ labels: "release"
24
+ add_comment: true
25
+
26
+ - name: Has version tag
27
+ uses: mheap/github-action-required-labels@v5
28
+ with:
29
+ mode: exactly
30
+ count: 1
31
+ labels: "major, minor, patch"
32
+ add_comment: true
@@ -0,0 +1,43 @@
1
+ name: pull-request
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ - major/*
8
+ - minor/*
9
+ - patch/*
10
+
11
+ jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v2
18
+
19
+ - name: Setup node
20
+ uses: actions/setup-node@v3
21
+ with:
22
+ registry-url: https://registry.npmjs.org
23
+ node-version: '16.x'
24
+
25
+ - name: Npm install
26
+ run: npm ci --ignore-scripts
27
+ env:
28
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_PUBLISH }}
29
+
30
+ - name: Load node-sass cache
31
+ id: cache-node-sass
32
+ uses: actions/cache@v3
33
+ with:
34
+ path: ./node_modules/node-sass/vendor/linux-x64-93/
35
+ key: ${{ runner.os }}-build-cache-node-sass-${{ hashFiles('**/package-lock.json') }}
36
+
37
+ - if: ${{ steps.cache-node-sass.outputs.cache-hit != 'true' }}
38
+ name: Build node-sass
39
+ run: npm run --prefix node_modules/node-sass/ postinstall
40
+
41
+ - name: Compile sass
42
+ run: |
43
+ npm run compile
package/CHANGELOG.md ADDED
@@ -0,0 +1,462 @@
1
+ # v1.2.4 (Mon Mar 04 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Created button-variant-events mixin [#15](https://github.com/SparkHire/es6-bootstrap-themes/pull/15) ([@bryan0767](https://github.com/bryan0767) [@throttlehead-dev](https://github.com/throttlehead-dev))
6
+
7
+ #### Authors: 2
8
+
9
+ - Bryan Atencia ([@bryan0767](https://github.com/bryan0767))
10
+ - Jacob Smits ([@throttlehead-dev](https://github.com/throttlehead-dev))
11
+
12
+ ---
13
+
14
+ # v1.2.3 (Tue Feb 27 2024)
15
+
16
+ #### 🐛 Bug Fix
17
+
18
+ - Fixed auto release [#21](https://github.com/SparkHire/es6-bootstrap-themes/pull/21) ([@throttlehead-dev](https://github.com/throttlehead-dev))
19
+ - Audited and cleaned up packages [#20](https://github.com/SparkHire/es6-bootstrap-themes/pull/20) ([@throttlehead-dev](https://github.com/throttlehead-dev))
20
+ - remove preset width, height and fill from the x icon. [#19](https://github.com/SparkHire/es6-bootstrap-themes/pull/19) ([@NicolasDesc](https://github.com/NicolasDesc))
21
+ - Updated package to 1.2.1 [#18](https://github.com/SparkHire/es6-bootstrap-themes/pull/18) ([@NicolasDesc](https://github.com/NicolasDesc))
22
+ - Added new twitter icon X [#17](https://github.com/SparkHire/es6-bootstrap-themes/pull/17) ([@NicolasDesc](https://github.com/NicolasDesc))
23
+ - Update to current version ([@JavierPDev](https://github.com/JavierPDev))
24
+ - Typography update [#5](https://github.com/SparkHire/es6-bootstrap-themes/pull/5) ([@JavierPDev](https://github.com/JavierPDev))
25
+ - Update theme htmls, update font url to point to hosted cdn [#1](https://github.com/SparkHire/es6-bootstrap-themes/pull/1) ([@bryan0767](https://github.com/bryan0767))
26
+
27
+ #### ⚠️ Pushed to `master`
28
+
29
+ - Deleted accidentally committed file ([@JavierPDev](https://github.com/JavierPDev))
30
+ - 1.2.0 ([@JavierPDev](https://github.com/JavierPDev))
31
+ - Merge branch 'minor/reference-checks' into feature/reference-checks ([@JavierPDev](https://github.com/JavierPDev))
32
+ - 1.1.3-reference-checks-2 ([@JavierPDev](https://github.com/JavierPDev))
33
+ - Add reference check icon ([@JavierPDev](https://github.com/JavierPDev))
34
+ - 1.1.3 ([@NicolasDesc](https://github.com/NicolasDesc))
35
+ - build ([@NicolasDesc](https://github.com/NicolasDesc))
36
+ - add same transition as btn calls to the svg ([@NicolasDesc](https://github.com/NicolasDesc))
37
+ - Build ([@JavierPDev](https://github.com/JavierPDev))
38
+ - 1.1.2 ([@JavierPDev](https://github.com/JavierPDev))
39
+ - update logos titles SparkHire/spark-hire-com #1171 ([@NicolasDesc](https://github.com/NicolasDesc))
40
+ - 1.1.1 ([@JavierPDev](https://github.com/JavierPDev))
41
+ - 1.1.1-monthly-settings-2 ([@JavierPDev](https://github.com/JavierPDev))
42
+ - Add more font-weight classes since we otherwise have to adjust them manually in our spark-hire-com repo scss so often during design reviews ([@JavierPDev](https://github.com/JavierPDev))
43
+ - 1.1.1-monthly-settings ([@JavierPDev](https://github.com/JavierPDev))
44
+ - Remove bottom 2px border from th elements within a .table-bordered ([@JavierPDev](https://github.com/JavierPDev))
45
+ - Build ([@throttlehead-dev](https://github.com/throttlehead-dev))
46
+ - 1.1.0 ([@throttlehead-dev](https://github.com/throttlehead-dev))
47
+ - Merge branch 'master' of github.com:SparkHire/es6-bootstrap-themes ([@throttlehead-dev](https://github.com/throttlehead-dev))
48
+ - 1.0.8 ([@JavierPDev](https://github.com/JavierPDev))
49
+ - Fix underline ([@JavierPDev](https://github.com/JavierPDev))
50
+ - 1.0.7 ([@JavierPDev](https://github.com/JavierPDev))
51
+ - Add underline ([@JavierPDev](https://github.com/JavierPDev))
52
+ - 1.0.6 ([@JavierPDev](https://github.com/JavierPDev))
53
+ - Fix spacing in .btn-links making it look out-of-place when used next to normal text ([@JavierPDev](https://github.com/JavierPDev))
54
+ - 1.0.5 ([@NicolasDesc](https://github.com/NicolasDesc))
55
+ - update some global style fopr ADA compliance #251 ([@NicolasDesc](https://github.com/NicolasDesc))
56
+ - 1.0.4 ([@JavierPDev](https://github.com/JavierPDev))
57
+ - Fix .btn-cyan text color ([@JavierPDev](https://github.com/JavierPDev))
58
+ - Add missing theme color ([@JavierPDev](https://github.com/JavierPDev))
59
+ - 1.0.3 ([@JavierPDev](https://github.com/JavierPDev))
60
+ - Add text-$color classes for our custom theme colors ([@JavierPDev](https://github.com/JavierPDev))
61
+ - 1.0.2 ([@NicolasDesc](https://github.com/NicolasDesc))
62
+ - add 500 font weight to Roboto family ([@NicolasDesc](https://github.com/NicolasDesc))
63
+ - Merge branch 'dev/ada-remediation' ([@throttlehead-dev](https://github.com/throttlehead-dev))
64
+ - Merge branch 'dev/ada-remediation' of codebasehq.com:sparkhire/sparkhire/bootstrap-themes into dev/ada-remediation ([@throttlehead-dev](https://github.com/throttlehead-dev))
65
+ - 1.0.0 ([@throttlehead-dev](https://github.com/throttlehead-dev))
66
+ - 1.0.0-ada-6 ([@JavierPDev](https://github.com/JavierPDev))
67
+ - Add css ([@JavierPDev](https://github.com/JavierPDev))
68
+ - 1.0.0-ada-5 ([@JavierPDev](https://github.com/JavierPDev))
69
+ - Use :focus-visible ([@JavierPDev](https://github.com/JavierPDev))
70
+ - 1.0.0-ada-4 ([@throttlehead-dev](https://github.com/throttlehead-dev))
71
+ - Adjust btn focus styles ([@throttlehead-dev](https://github.com/throttlehead-dev))
72
+ - Use firefox's native focus style ([@JavierPDev](https://github.com/JavierPDev))
73
+ - Add explicit outline styles for .btn:focus ([@JavierPDev](https://github.com/JavierPDev))
74
+ - 1.0.0-ada-3 ([@throttlehead-dev](https://github.com/throttlehead-dev))
75
+ - Improved form control focus style ([@throttlehead-dev](https://github.com/throttlehead-dev))
76
+ - Built ([@throttlehead-dev](https://github.com/throttlehead-dev))
77
+ - 1.0.0-ada-2 ([@throttlehead-dev](https://github.com/throttlehead-dev))
78
+ - Slightly darken gray-600 so it on white bg is compliant ([@throttlehead-dev](https://github.com/throttlehead-dev))
79
+ - 1.0.0-ada-1 ([@throttlehead-dev](https://github.com/throttlehead-dev))
80
+ - Fix btn-outline-secondary contrast ([@throttlehead-dev](https://github.com/throttlehead-dev))
81
+ - Improve link color ADA contrast ([@throttlehead-dev](https://github.com/throttlehead-dev))
82
+ - Tweaked dark theme grays ([@throttlehead-dev](https://github.com/throttlehead-dev))
83
+ - Lightened link blue color for dark theme ([@throttlehead-dev](https://github.com/throttlehead-dev))
84
+ - 0.9.14 ([@NicolasDesc](https://github.com/NicolasDesc))
85
+ - add more custom icons ([@NicolasDesc](https://github.com/NicolasDesc))
86
+ - 0.9.13 ([@NicolasDesc](https://github.com/NicolasDesc))
87
+ - fix safari custom select dual arrows [touch:15205] ([@NicolasDesc](https://github.com/NicolasDesc))
88
+ - 0.9.12 ([@NicolasDesc](https://github.com/NicolasDesc))
89
+ - add line-clamp-break-all ([@NicolasDesc](https://github.com/NicolasDesc))
90
+ - 0.9.11 ([@NicolasDesc](https://github.com/NicolasDesc))
91
+ - add back indeterminate style but make it specific to custom-checkbox ([@NicolasDesc](https://github.com/NicolasDesc))
92
+ - 0.9.10 ([@JavierPDev](https://github.com/JavierPDev))
93
+ - Undo badge style tweaks we're not going to use ([@JavierPDev](https://github.com/JavierPDev))
94
+ - 0.9.9 ([@NicolasDesc](https://github.com/NicolasDesc))
95
+ - remove indeterminate style from custom forms ([@NicolasDesc](https://github.com/NicolasDesc))
96
+ - 0.9.7 ([@JavierPDev](https://github.com/JavierPDev))
97
+ - Force set font color to white for badges with gray backgrounds since bootstrap's color contrast method returns black to contrast with the grays ([@JavierPDev](https://github.com/JavierPDev))
98
+ - 0.9.6 ([@JavierPDev](https://github.com/JavierPDev))
99
+ - Add .badge-outline#{color} classes ([@JavierPDev](https://github.com/JavierPDev))
100
+ - 0.9.5 ([@JavierPDev](https://github.com/JavierPDev))
101
+ - Add badge transparent ([@JavierPDev](https://github.com/JavierPDev))
102
+ - 0.9.4 ([@JavierPDev](https://github.com/JavierPDev))
103
+ - Tweak badges to our needs ([@JavierPDev](https://github.com/JavierPDev))
104
+ - 0.9.3 ([@NicolasDesc](https://github.com/NicolasDesc))
105
+ - update questionnaire icon ([@NicolasDesc](https://github.com/NicolasDesc))
106
+ - 0.9.2 ([@NicolasDesc](https://github.com/NicolasDesc))
107
+ - add questionnaire list icon ([@NicolasDesc](https://github.com/NicolasDesc))
108
+ - 0.9.1 ([@JavierPDev](https://github.com/JavierPDev))
109
+ - Use old space grays in dark theme ([@JavierPDev](https://github.com/JavierPDev))
110
+ - 0.9.0 ([@throttlehead-dev](https://github.com/throttlehead-dev))
111
+ - Upgrade node-sass ([@throttlehead-dev](https://github.com/throttlehead-dev))
112
+ - Fix ';', compile ([@throttlehead-dev](https://github.com/throttlehead-dev))
113
+ - 0.8.25 ([@throttlehead-dev](https://github.com/throttlehead-dev))
114
+ - Add new midnight-blue theme color ([@throttlehead-dev](https://github.com/throttlehead-dev))
115
+ - 0.8.24 ([@throttlehead-dev](https://github.com/throttlehead-dev))
116
+ - Override btn outline secondary disabled colors ([@throttlehead-dev](https://github.com/throttlehead-dev))
117
+ - 0.8.23 ([@throttlehead-dev](https://github.com/throttlehead-dev))
118
+ - Merge remote-tracking branch 'origin/master' ([@throttlehead-dev](https://github.com/throttlehead-dev))
119
+ - 0.8.22 ([@throttlehead-dev](https://github.com/throttlehead-dev))
120
+ - Commit css ([@throttlehead-dev](https://github.com/throttlehead-dev))
121
+ - Add font-weight-semi-bold class ([@throttlehead-dev](https://github.com/throttlehead-dev))
122
+ - Tweaked success, warning, danger colors, and btn-sm padding ([@throttlehead-dev](https://github.com/throttlehead-dev))
123
+ - 0.8.22 ([@JavierPDev](https://github.com/JavierPDev))
124
+ - Add font-weight classes ([@JavierPDev](https://github.com/JavierPDev))
125
+ - 0.8.21 ([@throttlehead-dev](https://github.com/throttlehead-dev))
126
+ - Add additional icons ([@throttlehead-dev](https://github.com/throttlehead-dev))
127
+ - 0.8.20 ([@throttlehead-dev](https://github.com/throttlehead-dev))
128
+ - add back in 300 source sans ([@throttlehead-dev](https://github.com/throttlehead-dev))
129
+ - 0.8.19 ([@throttlehead-dev](https://github.com/throttlehead-dev))
130
+ - add two more roboto styles ([@throttlehead-dev](https://github.com/throttlehead-dev))
131
+ - 0.8.18 ([@throttlehead-dev](https://github.com/throttlehead-dev))
132
+ - limit fonts ([@throttlehead-dev](https://github.com/throttlehead-dev))
133
+ - 0.8.17 ([@throttlehead-dev](https://github.com/throttlehead-dev))
134
+ - build ([@throttlehead-dev](https://github.com/throttlehead-dev))
135
+ - 0.8.16 ([@throttlehead-dev](https://github.com/throttlehead-dev))
136
+ - Commit built scripts ([@throttlehead-dev](https://github.com/throttlehead-dev))
137
+ - 0.8.15 ([@throttlehead-dev](https://github.com/throttlehead-dev))
138
+ - Add red to theme-colors array ([@throttlehead-dev](https://github.com/throttlehead-dev))
139
+ - Merge branch 'master' into develop ([@throttlehead-dev](https://github.com/throttlehead-dev))
140
+ - 0.8.12 ([@throttlehead-dev](https://github.com/throttlehead-dev))
141
+ - Rebuild ([@throttlehead-dev](https://github.com/throttlehead-dev))
142
+ - Merge remote-tracking branch 'origin/develop' into develop ([@throttlehead-dev](https://github.com/throttlehead-dev))
143
+ - Remove margin override ([@throttlehead-dev](https://github.com/throttlehead-dev))
144
+ - 0.8.13 ([@NicolasDesc](https://github.com/NicolasDesc))
145
+ - add glassdoor icon ([@NicolasDesc](https://github.com/NicolasDesc))
146
+ - 0.8.12 ([@JavierPDev](https://github.com/JavierPDev))
147
+ - Add link style that was removed from latest bootstrap 4 update ([@JavierPDev](https://github.com/JavierPDev))
148
+ - 0.8.11 ([@throttlehead-dev](https://github.com/throttlehead-dev))
149
+ - Add h6 style ([@throttlehead-dev](https://github.com/throttlehead-dev))
150
+ - 0.8.10 ([@throttlehead-dev](https://github.com/throttlehead-dev))
151
+ - Add svg fill classes ([@throttlehead-dev](https://github.com/throttlehead-dev))
152
+ - 0.8.9 ([@throttlehead-dev](https://github.com/throttlehead-dev))
153
+ - Update social glyphicons ([@throttlehead-dev](https://github.com/throttlehead-dev))
154
+ - 0.8.8 ([@throttlehead-dev](https://github.com/throttlehead-dev))
155
+ - Add some glyphicon social icons ([@throttlehead-dev](https://github.com/throttlehead-dev))
156
+ - Compile ([@throttlehead-dev](https://github.com/throttlehead-dev))
157
+ - 0.8.7 ([@throttlehead-dev](https://github.com/throttlehead-dev))
158
+ - Adjust brand color grays ([@throttlehead-dev](https://github.com/throttlehead-dev))
159
+ - 0.8.6 ([@JavierPDev](https://github.com/JavierPDev))
160
+ - Handle theme colored nav pills and add nav-link-sm ([@JavierPDev](https://github.com/JavierPDev))
161
+ - Revert svg fill color changes ([@throttlehead-dev](https://github.com/throttlehead-dev))
162
+ - 0.8.5 ([@throttlehead-dev](https://github.com/throttlehead-dev))
163
+ - tweak button styles ([@throttlehead-dev](https://github.com/throttlehead-dev))
164
+ - 0.8.4 ([@throttlehead-dev](https://github.com/throttlehead-dev))
165
+ - Lighten borders a bit ([@throttlehead-dev](https://github.com/throttlehead-dev))
166
+ - 0.8.3 ([@throttlehead-dev](https://github.com/throttlehead-dev))
167
+ - Tweak light theme border colors ([@throttlehead-dev](https://github.com/throttlehead-dev))
168
+ - 0.8.2 ([@throttlehead-dev](https://github.com/throttlehead-dev))
169
+ - Implement btn-link-$color hover styles ([@throttlehead-dev](https://github.com/throttlehead-dev))
170
+ - 0.8.1 ([@throttlehead-dev](https://github.com/throttlehead-dev))
171
+ - Added .line-clamp classes ([@throttlehead-dev](https://github.com/throttlehead-dev))
172
+ - 0.8.0 ([@throttlehead-dev](https://github.com/throttlehead-dev))
173
+ - Add indeterminate class ([@throttlehead-dev](https://github.com/throttlehead-dev))
174
+ - 0.8.0-grays-update-14 ([@throttlehead-dev](https://github.com/throttlehead-dev))
175
+ - Fix some button svg colors ([@throttlehead-dev](https://github.com/throttlehead-dev))
176
+ - 0.8.0-grays-update-13 ([@throttlehead-dev](https://github.com/throttlehead-dev))
177
+ - Add ghost buttons ([@throttlehead-dev](https://github.com/throttlehead-dev))
178
+ - 0.8.0-grays-update-12 ([@throttlehead-dev](https://github.com/throttlehead-dev))
179
+ - Tweak theme colors, add more button styles ([@throttlehead-dev](https://github.com/throttlehead-dev))
180
+ - 0.8.0-grays-update-11 ([@throttlehead-dev](https://github.com/throttlehead-dev))
181
+ - Remove button styles ([@throttlehead-dev](https://github.com/throttlehead-dev))
182
+ - 0.8.0-grays-update-10 ([@throttlehead-dev](https://github.com/throttlehead-dev))
183
+ - Merge remote-tracking branch 'origin/dev/grays-update' into dev/grays-update ([@throttlehead-dev](https://github.com/throttlehead-dev))
184
+ - Improved button styles ([@throttlehead-dev](https://github.com/throttlehead-dev))
185
+ - update light and dark theme ([@NicolasDesc](https://github.com/NicolasDesc))
186
+ - 0.8.0-grays-update-9 ([@NicolasDesc](https://github.com/NicolasDesc))
187
+ - remove margin top and bottom button on mobile ([@NicolasDesc](https://github.com/NicolasDesc))
188
+ - 0.8.0-grays-update-8 ([@NicolasDesc](https://github.com/NicolasDesc))
189
+ - down to xs ([@NicolasDesc](https://github.com/NicolasDesc))
190
+ - 0.8.0-grays-update-7 ([@NicolasDesc](https://github.com/NicolasDesc))
191
+ - span 100% button on sm breakpoint ([@NicolasDesc](https://github.com/NicolasDesc))
192
+ - 0.8.0-grays-update-6 ([@NicolasDesc](https://github.com/NicolasDesc))
193
+ - update light theme ([@NicolasDesc](https://github.com/NicolasDesc))
194
+ - 0.8.0-grays-update-5 ([@NicolasDesc](https://github.com/NicolasDesc))
195
+ - custom btn-light for light theme ([@NicolasDesc](https://github.com/NicolasDesc))
196
+ - 0.8.0-grays-update.4 ([@NicolasDesc](https://github.com/NicolasDesc))
197
+ - update more btn color ([@NicolasDesc](https://github.com/NicolasDesc))
198
+ - 0.8.0-grays-update-3 ([@NicolasDesc](https://github.com/NicolasDesc))
199
+ - add border to btn cancel and update btn white color ([@NicolasDesc](https://github.com/NicolasDesc))
200
+ - 0.8.0-grays-update-2 ([@NicolasDesc](https://github.com/NicolasDesc))
201
+ - update some button colors and global table layout ([@NicolasDesc](https://github.com/NicolasDesc))
202
+ - 0.8.0-grays-update-1 ([@throttlehead-dev](https://github.com/throttlehead-dev))
203
+ - Update grays, fix variable precedence ([@throttlehead-dev](https://github.com/throttlehead-dev))
204
+ - 0.7.57 ([@NicolasDesc](https://github.com/NicolasDesc))
205
+ - fix custom outline button color ([@NicolasDesc](https://github.com/NicolasDesc))
206
+ - 0.7.56 ([@JavierPDev](https://github.com/JavierPDev))
207
+ - Merge branch 'develop' ([@JavierPDev](https://github.com/JavierPDev))
208
+ - Update icon ([@JavierPDev](https://github.com/JavierPDev))
209
+ - 0.7.55 ([@JavierPDev](https://github.com/JavierPDev))
210
+ - Add video-request app icon ([@JavierPDev](https://github.com/JavierPDev))
211
+ - 0.7.54 ([@NicolasDesc](https://github.com/NicolasDesc))
212
+ - fix btn pink color ([@NicolasDesc](https://github.com/NicolasDesc))
213
+ - 0.7.53 ([@NicolasDesc](https://github.com/NicolasDesc))
214
+ - add pink to theme color ([@NicolasDesc](https://github.com/NicolasDesc))
215
+ - 0.7.52 ([@NicolasDesc](https://github.com/NicolasDesc))
216
+ - update form group margin bottom ([@NicolasDesc](https://github.com/NicolasDesc))
217
+ - 0.7.51 ([@NicolasDesc](https://github.com/NicolasDesc))
218
+ - add custom-control-sm ([@NicolasDesc](https://github.com/NicolasDesc))
219
+ - 0.7.50 ([@NicolasDesc](https://github.com/NicolasDesc))
220
+ - Merge branch 'develop' ([@NicolasDesc](https://github.com/NicolasDesc))
221
+ - update cyan ([@NicolasDesc](https://github.com/NicolasDesc))
222
+ - 0.7.49 ([@NicolasDesc](https://github.com/NicolasDesc))
223
+ - Merge branch 'dev/button-body-color' into develop ([@NicolasDesc](https://github.com/NicolasDesc))
224
+ - Some minor style tweaks ([@throttlehead-dev](https://github.com/throttlehead-dev))
225
+ - 0.7.48 ([@JavierPDev](https://github.com/JavierPDev))
226
+ - 0.7.47 ([@JavierPDev](https://github.com/JavierPDev))
227
+ - Add important ([@JavierPDev](https://github.com/JavierPDev))
228
+ - 0.7.46 ([@JavierPDev](https://github.com/JavierPDev))
229
+ - Add fill color utility for icons ([@JavierPDev](https://github.com/JavierPDev))
230
+ - 0.7.45-dev-2 ([@NicolasDesc](https://github.com/NicolasDesc))
231
+ - add more theme color light variables ([@NicolasDesc](https://github.com/NicolasDesc))
232
+ - 0.7.45-dev-1 ([@NicolasDesc](https://github.com/NicolasDesc))
233
+ - add button body-color ([@NicolasDesc](https://github.com/NicolasDesc))
234
+ - 0.7.45 ([@NicolasDesc](https://github.com/NicolasDesc))
235
+ - update tab bottom color ([@NicolasDesc](https://github.com/NicolasDesc))
236
+ - 0.7.44 ([@NicolasDesc](https://github.com/NicolasDesc))
237
+ - add teal to them colors and update nav scss to have specific nav-link color ([@NicolasDesc](https://github.com/NicolasDesc))
238
+ - 0.7.43 ([@NicolasDesc](https://github.com/NicolasDesc))
239
+ - add cyan to theme colors ([@NicolasDesc](https://github.com/NicolasDesc))
240
+ - 0.7.42 ([@NicolasDesc](https://github.com/NicolasDesc))
241
+ - update p tag line height globally ([@NicolasDesc](https://github.com/NicolasDesc))
242
+ - 0.7.41 ([@NicolasDesc](https://github.com/NicolasDesc))
243
+ - 0.7.40 ([@NicolasDesc](https://github.com/NicolasDesc))
244
+ - update some global form and paragraph styling ([@NicolasDesc](https://github.com/NicolasDesc))
245
+ - Merge branch 'master' into develop ([@NicolasDesc](https://github.com/NicolasDesc))
246
+ - 0.7.39 ([@NicolasDesc](https://github.com/NicolasDesc))
247
+ - update global mobile styling ([@NicolasDesc](https://github.com/NicolasDesc))
248
+ - 0.7.38 ([@throttlehead-dev](https://github.com/throttlehead-dev))
249
+ - Fix values ([@throttlehead-dev](https://github.com/throttlehead-dev))
250
+ - 0.7.37 ([@throttlehead-dev](https://github.com/throttlehead-dev))
251
+ - Added btn-link-$color class ([@throttlehead-dev](https://github.com/throttlehead-dev))
252
+ - 0.7.36 ([@throttlehead-dev](https://github.com/throttlehead-dev))
253
+ - Add svg align ([@throttlehead-dev](https://github.com/throttlehead-dev))
254
+ - 0.7.35 ([@throttlehead-dev](https://github.com/throttlehead-dev))
255
+ - Fix button white border color ([@throttlehead-dev](https://github.com/throttlehead-dev))
256
+ - 0.7.34 ([@throttlehead-dev](https://github.com/throttlehead-dev))
257
+ - Merge branch 'develop' ([@throttlehead-dev](https://github.com/throttlehead-dev))
258
+ - Remove font-size param ([@throttlehead-dev](https://github.com/throttlehead-dev))
259
+ - 0.7.33 ([@throttlehead-dev](https://github.com/throttlehead-dev))
260
+ - Add getting-started icon ([@throttlehead-dev](https://github.com/throttlehead-dev))
261
+ - Added new icons ([@throttlehead-dev](https://github.com/throttlehead-dev))
262
+ - 0.7.32 ([@NicolasDesc](https://github.com/NicolasDesc))
263
+ - add some custom icons ([@NicolasDesc](https://github.com/NicolasDesc))
264
+ - 0.7.31 ([@NicolasDesc](https://github.com/NicolasDesc))
265
+ - add free sticker square ([@NicolasDesc](https://github.com/NicolasDesc))
266
+ - 0.7.30 ([@NicolasDesc](https://github.com/NicolasDesc))
267
+ - add orange and white Spark Hire logo ([@NicolasDesc](https://github.com/NicolasDesc))
268
+ - 0.7.29 ([@NicolasDesc](https://github.com/NicolasDesc))
269
+ - add dark-blue to theme-colors ([@NicolasDesc](https://github.com/NicolasDesc))
270
+ - 0.7.28 ([@NicolasDesc](https://github.com/NicolasDesc))
271
+ - update button dark blue style ([@NicolasDesc](https://github.com/NicolasDesc))
272
+ - 0.7.27 ([@NicolasDesc](https://github.com/NicolasDesc))
273
+ - add important ([@NicolasDesc](https://github.com/NicolasDesc))
274
+ - 0.7.26 ([@NicolasDesc](https://github.com/NicolasDesc))
275
+ - update btn outline orange style ([@NicolasDesc](https://github.com/NicolasDesc))
276
+ - 0.7.25 ([@NicolasDesc](https://github.com/NicolasDesc))
277
+ - custom btn-orange styling ([@NicolasDesc](https://github.com/NicolasDesc))
278
+ - 0.7.24 ([@NicolasDesc](https://github.com/NicolasDesc))
279
+ - add orange them color ([@NicolasDesc](https://github.com/NicolasDesc))
280
+ - 0.7.23 ([@JavierPDev](https://github.com/JavierPDev))
281
+ - Apply colors to radio inputs that are disabled but also checked ([@JavierPDev](https://github.com/JavierPDev))
282
+ - 0.7.22 ([@JavierPDev](https://github.com/JavierPDev))
283
+ - Add missing btn-row class ([@JavierPDev](https://github.com/JavierPDev))
284
+ - 0.7.21 ([@JavierPDev](https://github.com/JavierPDev))
285
+ - Add theme color support for custom control inputs ([@JavierPDev](https://github.com/JavierPDev))
286
+ - Update sourcemaps ([@JavierPDev](https://github.com/JavierPDev))
287
+ - 0.7.20 ([@JavierPDev](https://github.com/JavierPDev))
288
+ - Fix disabled buttons ([@JavierPDev](https://github.com/JavierPDev))
289
+ - Add btn-default ([@JavierPDev](https://github.com/JavierPDev))
290
+ - 0.7.19 ([@NicolasDesc](https://github.com/NicolasDesc))
291
+ - add svg default color in nav tabs ([@NicolasDesc](https://github.com/NicolasDesc))
292
+ - 0.7.18 ([@JavierPDev](https://github.com/JavierPDev))
293
+ - Add cursor: pointer ([@JavierPDev](https://github.com/JavierPDev))
294
+ - Flex ([@JavierPDev](https://github.com/JavierPDev))
295
+ - Add labels to theme ([@JavierPDev](https://github.com/JavierPDev))
296
+ - 0.7.17 ([@NicolasDesc](https://github.com/NicolasDesc))
297
+ - add theme color to nav tabs ([@NicolasDesc](https://github.com/NicolasDesc))
298
+ - 0.7.16 ([@NicolasDesc](https://github.com/NicolasDesc))
299
+ - Merge branch 'dev/tabs' into develop ([@NicolasDesc](https://github.com/NicolasDesc))
300
+ - update dark theme ([@NicolasDesc](https://github.com/NicolasDesc))
301
+ - updates tabs style and add bottom tabs ([@NicolasDesc](https://github.com/NicolasDesc))
302
+ - add svg fill to alert ([@NicolasDesc](https://github.com/NicolasDesc))
303
+ - 0.7.14 ([@NicolasDesc](https://github.com/NicolasDesc))
304
+ - add form-group custom ([@NicolasDesc](https://github.com/NicolasDesc))
305
+ - 0.7.13 ([@NicolasDesc](https://github.com/NicolasDesc))
306
+ - update bootstrap package ([@NicolasDesc](https://github.com/NicolasDesc))
307
+ - 0.7.12 ([@throttlehead-dev](https://github.com/throttlehead-dev))
308
+ - SVG fixes ([@real-throttlehead](https://github.com/real-throttlehead))
309
+ - Add colored google svg ([@real-throttlehead](https://github.com/real-throttlehead))
310
+ - 0.7.11 ([@throttlehead-dev](https://github.com/throttlehead-dev))
311
+ - Merge remote-tracking branch 'origin/master' ([@real-throttlehead](https://github.com/real-throttlehead))
312
+ - Added flame icon ([@real-throttlehead](https://github.com/real-throttlehead))
313
+ - 0.7.1 ([@JavierPDev](https://github.com/JavierPDev))
314
+ - Add dark blue to colors so we can use it for button color classes ([@JavierPDev](https://github.com/JavierPDev))
315
+ - Adjust focus shadow ([@real-throttlehead](https://github.com/real-throttlehead))
316
+ - 0.7.0 ([@throttlehead-dev](https://github.com/throttlehead-dev))
317
+ - Some more modal style adjustments ([@real-throttlehead](https://github.com/real-throttlehead))
318
+ - Adjust modal sizes ([@real-throttlehead](https://github.com/real-throttlehead))
319
+ - 0.6.9 ([@throttlehead-dev](https://github.com/throttlehead-dev))
320
+ - Implemented colors custom radio controls ([@throttlehead-dev](https://github.com/throttlehead-dev))
321
+ - 0.6.8 ([@throttlehead-dev](https://github.com/throttlehead-dev))
322
+ - Decrease margin and padding 5 ([@real-throttlehead](https://github.com/real-throttlehead))
323
+ - 0.6.7 ([@NicolasDesc](https://github.com/NicolasDesc))
324
+ - Merge branch 'dev/btn-purple' into develop ([@NicolasDesc](https://github.com/NicolasDesc))
325
+ - add purple as theme color ([@NicolasDesc](https://github.com/NicolasDesc))
326
+ - add btn-purple to global variable ([@NicolasDesc](https://github.com/NicolasDesc))
327
+ - Build updates ([@real-throttlehead](https://github.com/real-throttlehead))
328
+ - Update btn disabled opacity ([@real-throttlehead](https://github.com/real-throttlehead))
329
+ - Fix btn-lg line height ([@real-throttlehead](https://github.com/real-throttlehead))
330
+ - 0.6.6 ([@throttlehead-dev](https://github.com/throttlehead-dev))
331
+ - Fixed some issues with button styles ([@real-throttlehead](https://github.com/real-throttlehead))
332
+ - Update some styles ([@real-throttlehead](https://github.com/real-throttlehead))
333
+ - 0.6.5 ([@throttlehead-dev](https://github.com/throttlehead-dev))
334
+ - 0.6.4 ([@throttlehead-dev](https://github.com/throttlehead-dev))
335
+ - Remove button shadows ([@real-throttlehead](https://github.com/real-throttlehead))
336
+ - Merge branch 'master' into develop ([@real-throttlehead](https://github.com/real-throttlehead))
337
+ - 0.6.3 ([@throttlehead-dev](https://github.com/throttlehead-dev))
338
+ - Added some new variables and tweaked light theme font color ([@throttlehead-dev](https://github.com/throttlehead-dev))
339
+ - 0.6.2 ([@throttlehead-dev](https://github.com/throttlehead-dev))
340
+ - Added app-icons to theme ([@real-throttlehead](https://github.com/real-throttlehead))
341
+ - add custom icons from react settings ([@NicolasDesc](https://github.com/NicolasDesc))
342
+ - installed react for dev ([@real-throttlehead](https://github.com/real-throttlehead))
343
+ - Adjust font size ([@real-throttlehead](https://github.com/real-throttlehead))
344
+ - App backgrounds should be set per-app. Card styles should be adhered to, they are the 'body-bg' color by default, by using a shade of gray for the apps, cards can be white inset in gray ([@throttlehead-dev](https://github.com/throttlehead-dev))
345
+ - Add utilities for common styles ([@JavierPDev](https://github.com/JavierPDev))
346
+ - Merge branch 'develop' ([@real-throttlehead](https://github.com/real-throttlehead))
347
+ - Switch to yarn ([@real-throttlehead](https://github.com/real-throttlehead))
348
+ - 0.6.1 ([@throttlehead-dev](https://github.com/throttlehead-dev))
349
+ - Enable box shadows ([@throttlehead-dev](https://github.com/throttlehead-dev))
350
+ - Fix dropdowns ([@throttlehead-dev](https://github.com/throttlehead-dev))
351
+ - Tweaked dropdown styles ([@throttlehead-dev](https://github.com/throttlehead-dev))
352
+ - Added small font style, adjusted small font size ([@throttlehead-dev](https://github.com/throttlehead-dev))
353
+ - Restyle nav tabs ([@real-throttlehead](https://github.com/real-throttlehead))
354
+ - Rename files to match bootstrap convention ([@real-throttlehead](https://github.com/real-throttlehead))
355
+ - Add transition to modal close btn ([@real-throttlehead](https://github.com/real-throttlehead))
356
+ - Added btn-transition to links and made btn-transition a bit slower ([@real-throttlehead](https://github.com/real-throttlehead))
357
+ - Add app background colors based on what they are in current react-settings and react-components ([@JavierPDev](https://github.com/JavierPDev))
358
+ - Add border to last row of default table ([@real-throttlehead](https://github.com/real-throttlehead))
359
+ - Version ([@real-throttlehead](https://github.com/real-throttlehead))
360
+ - Tweak yellow ([@real-throttlehead](https://github.com/real-throttlehead))
361
+ - Some fixes for theme colors ([@real-throttlehead](https://github.com/real-throttlehead))
362
+ - Some more theme fixes ([@throttlehead-dev](https://github.com/throttlehead-dev))
363
+ - Fixed theming variable hierarchy ([@throttlehead-dev](https://github.com/throttlehead-dev))
364
+ - npm audit ([@throttlehead-dev](https://github.com/throttlehead-dev))
365
+ - Incorporate some global paginator styles ([@real-throttlehead](https://github.com/real-throttlehead))
366
+ - Update dark pagination colors ([@real-throttlehead](https://github.com/real-throttlehead))
367
+ - Created watch command ([@real-throttlehead](https://github.com/real-throttlehead))
368
+ - 0.5.2 ([@NicolasDesc](https://github.com/NicolasDesc))
369
+ - Remove rename script ([@real-throttlehead](https://github.com/real-throttlehead))
370
+ - 0.5.1 ([@throttlehead-dev](https://github.com/throttlehead-dev))
371
+ - Added glyphicons ([@real-throttlehead](https://github.com/real-throttlehead))
372
+ - 0.5.0 ([@throttlehead-dev](https://github.com/throttlehead-dev))
373
+ - Move old 'filled' to 'hollow', started creating new 'filled' social icons ([@throttlehead-dev](https://github.com/throttlehead-dev))
374
+ - Install latest node-sass and add new google icon ([@msolonko-sp](https://github.com/msolonko-sp))
375
+ - 0.4.9 ([@msolonko-sp](https://github.com/msolonko-sp))
376
+ - 0.4.8 ([@real-throttlehead](https://github.com/real-throttlehead))
377
+ - Some tweaks to buttons ([@real-throttlehead](https://github.com/real-throttlehead))
378
+ - 0.4.7 ([@JavierPDev](https://github.com/JavierPDev))
379
+ - created cast icons ([@throttlehead-dev](https://github.com/throttlehead-dev))
380
+ - Delete dupes ([@real-throttlehead](https://github.com/real-throttlehead))
381
+ - 0.4.6 ([@real-throttlehead](https://github.com/real-throttlehead))
382
+ - Move logos to sub folder ([@real-throttlehead](https://github.com/real-throttlehead))
383
+ - Added best-practices icons ([@real-throttlehead](https://github.com/real-throttlehead))
384
+ - 0.4.5 ([@real-throttlehead](https://github.com/real-throttlehead))
385
+ - Fix table color ([@real-throttlehead](https://github.com/real-throttlehead))
386
+ - latest compile ([@real-throttlehead](https://github.com/real-throttlehead))
387
+ - 0.4.4 ([@real-throttlehead](https://github.com/real-throttlehead))
388
+ - 0.4.3 ([@real-throttlehead](https://github.com/real-throttlehead))
389
+ - npm audit ([@real-throttlehead](https://github.com/real-throttlehead))
390
+ - 0.4.2 ([@real-throttlehead](https://github.com/real-throttlehead))
391
+ - add no record icon ([@real-throttlehead](https://github.com/real-throttlehead))
392
+ - 0.4.1 ([@real-throttlehead](https://github.com/real-throttlehead))
393
+ - Added new disconnected icon ([@real-throttlehead](https://github.com/real-throttlehead))
394
+ - 0.4.0 ([@real-throttlehead](https://github.com/real-throttlehead))
395
+ - Swap out font for source sans ([@real-throttlehead](https://github.com/real-throttlehead))
396
+ - 0.3.2 ([@real-throttlehead](https://github.com/real-throttlehead))
397
+ - Fix svg viewbox ([@real-throttlehead](https://github.com/real-throttlehead))
398
+ - 0.3.1 ([@real-throttlehead](https://github.com/real-throttlehead))
399
+ - Optimized more icons ([@real-throttlehead](https://github.com/real-throttlehead))
400
+ - Optimized social svgs ([@real-throttlehead](https://github.com/real-throttlehead))
401
+ - Added new filled social media icons ([@real-throttlehead](https://github.com/real-throttlehead))
402
+ - 0.3.0 ([@real-throttlehead](https://github.com/real-throttlehead))
403
+ - Reduce font requests ([@real-throttlehead](https://github.com/real-throttlehead))
404
+ - 0.2.8 ([@real-throttlehead](https://github.com/real-throttlehead))
405
+ - Added new social media icons ([@real-throttlehead](https://github.com/real-throttlehead))
406
+ - 0.2.7 ([@real-throttlehead](https://github.com/real-throttlehead))
407
+ - Improved large input and button styles ([@real-throttlehead](https://github.com/real-throttlehead))
408
+ - 0.2.6 ([@real-throttlehead](https://github.com/real-throttlehead))
409
+ - Darken gray 1000 for dark theme ([@real-throttlehead](https://github.com/real-throttlehead))
410
+ - 0.2.5 ([@real-throttlehead](https://github.com/real-throttlehead))
411
+ - Fixed more dark theme issues ([@real-throttlehead](https://github.com/real-throttlehead))
412
+ - 0.2.4 ([@real-throttlehead](https://github.com/real-throttlehead))
413
+ - Fixed numerous dark theme style issues ([@real-throttlehead](https://github.com/real-throttlehead))
414
+ - Fixed colored tables ([@real-throttlehead](https://github.com/real-throttlehead))
415
+ - Fixed some button colors ([@real-throttlehead](https://github.com/real-throttlehead))
416
+ - 0.2.3 ([@real-throttlehead](https://github.com/real-throttlehead))
417
+ - Fix fonts ([@real-throttlehead](https://github.com/real-throttlehead))
418
+ - 0.2.2 ([@real-throttlehead](https://github.com/real-throttlehead))
419
+ - Merge branch 'dev/html-preview' ([@real-throttlehead](https://github.com/real-throttlehead))
420
+ - Move icons ([@real-throttlehead](https://github.com/real-throttlehead))
421
+ - Update build script ([@real-throttlehead](https://github.com/real-throttlehead))
422
+ - 0.2.1 ([@real-throttlehead](https://github.com/real-throttlehead))
423
+ - Make single build script ([@real-throttlehead](https://github.com/real-throttlehead))
424
+ - Further improve build script ([@real-throttlehead](https://github.com/real-throttlehead))
425
+ - Created new node-sass build script ([@real-throttlehead](https://github.com/real-throttlehead))
426
+ - Attempting to properly import node_module bootstrap files ([@real-throttlehead](https://github.com/real-throttlehead))
427
+ - 0.2.0 ([@real-throttlehead](https://github.com/real-throttlehead))
428
+ - Update some html ([@real-throttlehead](https://github.com/real-throttlehead))
429
+ - Improve scrollbar styles ([@real-throttlehead](https://github.com/real-throttlehead))
430
+ - Merged in master ([@real-throttlehead](https://github.com/real-throttlehead))
431
+ - Merge branch 'master' into dev/html-preview ([@real-throttlehead](https://github.com/real-throttlehead))
432
+ - Added html previews, updated package.json build ([@real-throttlehead](https://github.com/real-throttlehead))
433
+ - 0.1.0 ([@throttlehead-dev](https://github.com/throttlehead-dev))
434
+ - Add svg icons to theme ([@throttlehead-dev](https://github.com/throttlehead-dev))
435
+ - 0.0.41 ([@throttlehead-dev](https://github.com/throttlehead-dev))
436
+ - Tweak scrollbars some more ([@throttlehead-dev](https://github.com/throttlehead-dev))
437
+ - 0.0.4 ([@throttlehead-dev](https://github.com/throttlehead-dev))
438
+ - Make scrollbars more visable ([@throttlehead-dev](https://github.com/throttlehead-dev))
439
+ - Fix variable name ([@real-throttlehead](https://github.com/real-throttlehead))
440
+ - Update version number ([@real-throttlehead](https://github.com/real-throttlehead))
441
+ - Styled modals ([@real-throttlehead](https://github.com/real-throttlehead))
442
+ - Updated fonts ([@real-throttlehead](https://github.com/real-throttlehead))
443
+ - Reorganized project so themes share a parent variables css and then setup light theme ([@real-throttlehead](https://github.com/real-throttlehead))
444
+ - Update scss includes ([@throttlehead-dev](https://github.com/throttlehead-dev))
445
+ - Made node_modules references relative ([@real-throttlehead](https://github.com/real-throttlehead))
446
+ - Really update bootstrap ([@real-throttlehead](https://github.com/real-throttlehead))
447
+ - Update bootstrap ([@real-throttlehead](https://github.com/real-throttlehead))
448
+ - Added additional gray color ([@real-throttlehead](https://github.com/real-throttlehead))
449
+ - Update package ([@real-throttlehead](https://github.com/real-throttlehead))
450
+ - Add scrollbar styling to theme ([@real-throttlehead](https://github.com/real-throttlehead))
451
+ - Import all of bootstrap's css ([@real-throttlehead](https://github.com/real-throttlehead))
452
+ - Update project name and scope ([@real-throttlehead](https://github.com/real-throttlehead))
453
+ - initial commit ([@real-throttlehead](https://github.com/real-throttlehead))
454
+
455
+ #### Authors: 6
456
+
457
+ - [@msolonko-sp](https://github.com/msolonko-sp)
458
+ - [@real-throttlehead](https://github.com/real-throttlehead)
459
+ - Bryan Atencia ([@bryan0767](https://github.com/bryan0767))
460
+ - Jacob Smits ([@throttlehead-dev](https://github.com/throttlehead-dev))
461
+ - Javier Pena ([@JavierPDev](https://github.com/JavierPDev))
462
+ - Nicolas Deschamps ([@NicolasDesc](https://github.com/NicolasDesc))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-hire/bootstrap-themes",
3
- "version": "2.0.0-video-transcripts-2",
3
+ "version": "2.0.0",
4
4
  "description": "Custom Bootstrap 4 Themes",
5
5
  "repository": {
6
6
  "type": "git",