Skip to content

Commit a8ec32e

Browse files
committed
release: version 2025.2.5
1 parent 8605a07 commit a8ec32e

15 files changed

+1787
-954
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ If you feel awesome and want to support us in a small way, please consider starr
4141
<td><img src="https://img.shields.io/npm/v/style-forge.base" alt="npm"></td>
4242
<td>Basic styles and foundational components of the project.</td>
4343
</tr>
44+
<tr>
45+
<td>form</td>
46+
<td><a href="https://github.com/Style-Forge/form" target="_blank">GitHub</a></td>
47+
<td><a href="https://npmjs.com/package/style-forge.form" target="_blank">NPM</a></td>
48+
<td><img src="https://img.shields.io/npm/v/style-forge.form" alt="npm"></td>
49+
<td>Styles and components for creating forms.</td>
50+
</tr>
4451
<tr>
4552
<td>helpers</td>
4653
<td><a href="https://github.com/Style-Forge/helpers" target="_blank">GitHub</a></td>
@@ -55,13 +62,6 @@ If you feel awesome and want to support us in a small way, please consider starr
5562
<td><img src="https://img.shields.io/npm/v/style-forge.media" alt="npm"></td>
5663
<td>Comprehensive CSS media query helpers for responsive web design.</td>
5764
</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>
62-
<td><img src="https://img.shields.io/npm/v/style-forge.form" alt="npm"></td>
63-
<td>Styles and components for creating forms.</td>
64-
</tr>
6565
<tr>
6666
<td>themes</td>
6767
<td><a href="https://github.com/Style-Forge/themes" target="_blank">GitHub</a></td>

helpers.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "style-forge.helpers",
3-
"version": "2025.1.31",
3+
"version": "2025.2.5",
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/border.css

+18-39
Original file line numberDiff line numberDiff line change
@@ -49,45 +49,24 @@ html.var .bd, html.var .bd\:1 { border: 1px solid }
4949
html.var .bd\:2 { border: 2px solid }
5050

5151
html.var .bd\:w, html.var .bd\:w\:1 { border-width: 1px }
52-
html.var .bd\:t\:w { border-block-start-width: 1px }
53-
html.var .bd\:r\:w { border-inline-end-width: 1px }
54-
html.var .bd\:b\:w { border-block-end-width: 1px }
55-
html.var .bd\:l\:w { border-inline-start-width: 1px }
56-
html.var .bd\:x\:w { border-inline-width: 1px }
57-
html.var .bd\:y\:w { border-block-width: 1px }
5852

59-
html.var .bd\:t\:w\:0 { border-block-start-width: 0 }
60-
html.var .bd\:r\:w\:0 { border-inline-end-width: 0 }
61-
html.var .bd\:b\:w\:0 { border-block-end-width: 0 }
62-
html.var .bd\:l\:w\:0 { border-inline-start-width: 0 }
63-
html.var .bd\:x\:w\:0 { border-inline-width: 0 }
64-
html.var .bd\:y\:w\:0 { border-block-width: 0 }
53+
html.var .bd\:t\:w { border-top-width: 1px }
54+
html.var .bd\:r\:w { border-right-width: 1px }
55+
html.var .bd\:b\:w { border-bottom-width: 1px }
56+
html.var .bd\:l\:w { border-left-width: 1px }
57+
html.var .bd\:x\:w { border-left-width: 1px; border-right-width: 1px }
58+
html.var .bd\:y\:w { border-top-width: 1px; border-bottom-width: 1px }
6559

66-
html.var .bd\:w\:2 { border-width: 2px }
67-
html.var .bd\:t\:w\:2 { border-block-start-width: 2px }
68-
html.var .bd\:r\:w\:2 { border-inline-end-width: 2px }
69-
html.var .bd\:b\:w\:2 { border-block-end-width: 2px }
70-
html.var .bd\:l\:w\:2 { border-inline-start-width: 2px }
71-
html.var .bd\:x\:w\:2 { border-inline-width: 2px }
72-
html.var .bd\:y\:w\:2 { border-block-width: 2px }
60+
html.var .bd\:t\:w\:0 { border-top-width: 0 }
61+
html.var .bd\:r\:w\:0 { border-right-width: 0 }
62+
html.var .bd\:b\:w\:0 { border-bottom-width: 0 }
63+
html.var .bd\:l\:w\:0 { border-left-width: 0 }
64+
html.var .bd\:x\:w\:0 { border-left-width: 0; border-right-width: 0 }
65+
html.var .bd\:y\:w\:0 { border-top-width: 0; border-bottom-width: 0 }
7366

74-
html.mpb .bd\:t\:w { border-top-width: 1px }
75-
html.mpb .bd\:r\:w { border-right-width: 1px }
76-
html.mpb .bd\:b\:w { border-bottom-width: 1px }
77-
html.mpb .bd\:l\:w { border-left-width: 1px }
78-
html.mpb .bd\:x\:w { border-left-width: 1px; border-right-width: 1px }
79-
html.mpb .bd\:y\:w { border-top-width: 1px; border-bottom-width: 1px }
80-
81-
html.mpb .bd\:t\:w\:0 { border-top-width: 0 }
82-
html.mpb .bd\:r\:w\:0 { border-right-width: 0 }
83-
html.mpb .bd\:b\:w\:0 { border-bottom-width: 0 }
84-
html.mpb .bd\:l\:w\:0 { border-left-width: 0 }
85-
html.mpb .bd\:x\:w\:0 { border-left-width: 0; border-right-width: 0 }
86-
html.mpb .bd\:y\:w\:0 { border-top-width: 0; border-bottom-width: 0 }
87-
88-
html.mpb .bd\:t\:w\:2 { border-top-width: 2px }
89-
html.mpb .bd\:r\:w\:2 { border-right-width: 2px }
90-
html.mpb .bd\:b\:w\:2 { border-bottom-width: 2px }
91-
html.mpb .bd\:l\:w\:2 { border-left-width: 2px }
92-
html.mpb .bd\:x\:w\:2 { border-left-width: 2px; border-right-width: 2px }
93-
html.mpb .bd\:y\:w\:2 { border-top-width: 2px; border-bottom-width: 2px }
67+
html.var .bd\:t\:w\:2 { border-top-width: 2px }
68+
html.var .bd\:r\:w\:2 { border-right-width: 2px }
69+
html.var .bd\:b\:w\:2 { border-bottom-width: 2px }
70+
html.var .bd\:l\:w\:2 { border-left-width: 2px }
71+
html.var .bd\:x\:w\:2 { border-left-width: 2px; border-right-width: 2px }
72+
html.var .bd\:y\:w\:2 { border-top-width: 2px; border-bottom-width: 2px }

0 commit comments

Comments
 (0)