@rolster/styles-foundations 2.3.1 → 2.3.3
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.
- package/dist/rolster-styles.css +2 -2
- package/dist/rolster-styles.min.css +1 -1
- package/dist/rolster-styles.rtl.css +2 -2
- package/dist/rolster-styles.rtl.min.css +1 -1
- package/fonts/mont/_mont.scss +69 -0
- package/fonts/mont/mont-bold.otf +0 -0
- package/fonts/mont/mont-light.otf +0 -0
- package/fonts/mont/mont-regular.otf +0 -0
- package/fonts/mont/mont-semibold.otf +0 -0
- package/fonts/poppins/_poppins.scss +69 -0
- package/fonts/poppins/poppins-bold.woff2 +0 -0
- package/fonts/poppins/poppins-light.woff2 +0 -0
- package/fonts/poppins/poppins-medium.woff2 +0 -0
- package/fonts/poppins/poppins-regular.woff2 +0 -0
- package/fonts/poppins/poppins-semibold.woff2 +0 -0
- package/fonts/space-grotesk/_space-grotesk.scss +69 -0
- package/fonts/space-grotesk/space-grotesk-bold.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-light.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-medium.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-regular.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-semibold.woff +0 -0
- package/icons/_rolster-icons.scss +776 -0
- package/icons/rolster-icons.eot +0 -0
- package/icons/rolster-icons.svg +258 -0
- package/icons/rolster-icons.ttf +0 -0
- package/icons/rolster-icons.woff +0 -0
- package/package.json +3 -1
- package/scss/components/_field-box.scss +4 -4
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolster/styles-foundations",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"description": "Front-end style pack to develop responsive and mobile projects on the web with Rolster.",
|
|
5
5
|
"sass": "scss/_rolster-styles.scss",
|
|
6
6
|
"style": "dist/rolster-styles.css",
|
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"files": [
|
|
10
10
|
"dist/",
|
|
11
|
+
"fonts/",
|
|
12
|
+
"icons/",
|
|
11
13
|
"scss/"
|
|
12
14
|
],
|
|
13
15
|
"scripts": {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology FieldBox Component
|
|
2
|
-
// v2.1.
|
|
2
|
+
// v2.1.1
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 08/Sep/2022
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 25/Jun/2024
|
|
7
7
|
|
|
8
8
|
.rls-field-box {
|
|
9
9
|
--pvt-label-opacity: 1;
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
position: relative;
|
|
13
13
|
display: flex;
|
|
14
14
|
flex-direction: column;
|
|
15
|
-
row-gap: var(--rls-sizing-x2);
|
|
16
15
|
width: 100%;
|
|
17
16
|
box-sizing: border-box;
|
|
18
17
|
transition: height 160ms 0ms var(--rls-standard-curve);
|
|
@@ -42,6 +41,7 @@
|
|
|
42
41
|
width: 100%;
|
|
43
42
|
padding: 0rem 5rem;
|
|
44
43
|
box-sizing: border-box;
|
|
44
|
+
margin-bottom: var(--rls-sizing-x2);
|
|
45
45
|
color: var(--rlc-fieldbox-label-font-color);
|
|
46
46
|
opacity: var(--pvt-label-opacity);
|
|
47
47
|
overflow: hidden;
|
|
@@ -87,6 +87,6 @@
|
|
|
87
87
|
&__error {
|
|
88
88
|
padding: 0rem var(--rls-sizing-x4);
|
|
89
89
|
box-sizing: border-box;
|
|
90
|
-
margin-top: var(--rls-sizing-
|
|
90
|
+
margin-top: var(--rls-sizing-x2);
|
|
91
91
|
}
|
|
92
92
|
}
|