Skip to content

Commit 8605a07

Browse files
authored
release: version 2025.1.31 (#65)
* release: version 2025.1.31 * fix: added  
1 parent ed85eca commit 8605a07

File tree

7 files changed

+204
-205
lines changed

7 files changed

+204
-205
lines changed

README.md

Lines changed: 29 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,49 +23,66 @@ If you feel awesome and want to support us in a small way, please consider starr
2323
<table>
2424
<tr>
2525
<th>Module</th>
26+
<th colspan="2">Links</th>
2627
<th>Version</th>
2728
<th>Description</th>
2829
</tr>
2930
<tr>
30-
<td><a href="https://github.com/Style-Forge/hub">hub</a></td>
31+
<td>hub</td>
32+
<td><a href="https://github.com/Style-Forge/hub" target="_blank">GitHub</a></td>
33+
<td><a href="https://npmjs.com/package/style-forge" target="_blank">NPM</a></td>
3134
<td><img src="https://img.shields.io/npm/v/style-forge" alt="npm"></td>
3235
<td>Central repository that integrates all project modules.</td>
3336
</tr>
3437
<tr>
35-
<td><a href="https://github.com/Style-Forge/base">base</a></td>
38+
<td>base</td>
39+
<td><a href="https://github.com/Style-Forge/base" target="_blank">GitHub</a></td>
40+
<td><a href="https://npmjs.com/package/style-forge.base" target="_blank">NPM</a></td>
3641
<td><img src="https://img.shields.io/npm/v/style-forge.base" alt="npm"></td>
3742
<td>Basic styles and foundational components of the project.</td>
3843
</tr>
3944
<tr>
40-
<td><a href="https://github.com/Style-Forge/helpers">helpers</a></td>
45+
<td>helpers</td>
46+
<td><a href="https://github.com/Style-Forge/helpers" target="_blank">GitHub</a></td>
47+
<td><a href="https://npmjs.com/package/style-forge.helpers" target="_blank">NPM</a></td>
4148
<td><img src="https://img.shields.io/npm/v/style-forge.helpers" alt="npm"></td>
4249
<td>Utility functions and helpers for the project.</td>
4350
</tr>
4451
<tr>
45-
<td><a href="https://github.com/Style-Forge/form">form</a></td>
52+
<td>└&nbsp;media</td>
53+
<td><a href="https://github.com/Style-Forge/media" target="_blank">GitHub</a></td>
54+
<td><a href="https://npmjs.com/package/style-forge.media" target="_blank">NPM</a></td>
55+
<td><img src="https://img.shields.io/npm/v/style-forge.media" alt="npm"></td>
56+
<td>Comprehensive CSS media query helpers for responsive web design.</td>
57+
</tr>
58+
<tr>
59+
<td>form</td>
60+
<td><a href="https://github.com/Style-Forge/form" target="_blank">GitHub</a></td>
61+
<td><a href="https://npmjs.com/package/style-forge.form" target="_blank">NPM</a></td>
4662
<td><img src="https://img.shields.io/npm/v/style-forge.form" alt="npm"></td>
4763
<td>Styles and components for creating forms.</td>
4864
</tr>
4965
<tr>
50-
<td><a href="https://github.com/Style-Forge/themes">themes</a></td>
66+
<td>themes</td>
67+
<td><a href="https://github.com/Style-Forge/themes" target="_blank">GitHub</a></td>
68+
<td><a href="https://npmjs.com/package/style-forge.themes" target="_blank">NPM</a></td>
5169
<td><img src="https://img.shields.io/npm/v/style-forge.themes" alt="npm"></td>
5270
<td>Themes and styling options for the project.</td>
5371
</tr>
5472
<tr>
55-
<td><a href="https://github.com/Style-Forge/patterns">patterns</a></td>
73+
<td>patterns</td>
74+
<td><a href="https://github.com/Style-Forge/patterns" target="_blank">GitHub</a></td>
75+
<td><a href="https://npmjs.com/package/style-forge.patterns" target="_blank">NPM</a></td>
5676
<td><img src="https://img.shields.io/npm/v/style-forge.patterns" alt="npm"></td>
5777
<td>Reusable patterns and templates for the project.</td>
5878
</tr>
5979
<tr>
60-
<td><a href="https://github.com/Style-Forge/colors">colors</a></td>
80+
<td>colors</td>
81+
<td><a href="https://github.com/Style-Forge/colors" target="_blank">GitHub</a></td>
82+
<td><a href="https://npmjs.com/package/style-forge.colors" target="_blank">NPM</a></td>
6183
<td><img src="https://img.shields.io/npm/v/style-forge.colors" alt="npm"></td>
6284
<td>Color palettes and styles for the project.</td>
6385
</tr>
64-
<tr>
65-
<td><a href="https://github.com/Style-Forge/media">media</a></td>
66-
<td><img src="https://img.shields.io/npm/v/style-forge.media" alt="npm"></td>
67-
<td>Comprehensive CSS media query helpers for responsive web design.</td>
68-
</tr>
6986
</table>
7087

7188
## Contributing

helpers.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "style-forge.helpers",
3-
"version": "2025.1.25",
3+
"version": "2025.1.31",
44
"description": "Style-Forge.Helpers: essential CSS helper classes for spacing, alignment, visibility, and more in web development.",
55
"type": "module",
66
"main": "helpers.css",

src/all.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
@import './var.css';
22

3+
@import './inline.css';
4+
35
@import './columns/all.css';
46

5-
@import './inline.css';
67
@import './flex.css';
78
@import './grid.css';
89
@import './gap.css';

src/columns/inline.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,3 +247,7 @@
247247
.cols\:11 > .col\:end\:9 { margin-right: 72.7272% }
248248
.cols\:11 > .col\:end\:10 { margin-right: 81.8181% }
249249
.cols\:11 > .col\:end\:11 { margin-right: 90.9090% }
250+
251+
/* /// */
252+
253+
html.grid [class*='cols'] { display: block }

0 commit comments

Comments
 (0)