@san-siva/stylekit 1.0.10 → 1.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@san-siva/stylekit",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "description": "A modular SCSS design system with utilities, colors, typography, and animations",
5
5
  "main": "styles/index.module.scss",
6
6
  "exports": {
@@ -84,6 +84,7 @@ typo.$font-sizes: (
84
84
  a: typo.$font-size--p,
85
85
  li: typo.$font-size--p,
86
86
  span: typo.$font-size--p,
87
+ em: typo.$font-size--p,
87
88
  input: typo.$font-size--p,
88
89
  textarea: typo.$font-size--p,
89
90
  select: typo.$font-size--p,
@@ -110,6 +111,10 @@ b {
110
111
  font-weight: typo.$font-weight--500;
111
112
  }
112
113
 
114
+ em {
115
+ font-style: italic;
116
+ }
117
+
113
118
  a {
114
119
  color: colors.$color--dark;
115
120
  font-family: typo.$font-family--code;
@@ -140,7 +145,7 @@ hr {
140
145
  mark,
141
146
  code {
142
147
  font-family: typo.$font-family--code;
143
- font-size: typo.$font-size--p-small;
148
+ font-size: typo.$font-size--small;
144
149
  padding: utils.rem(2) utils.rem(4);
145
150
  background-color: colors.$color--code;
146
151
  height: fit-content;
@@ -100,6 +100,10 @@ $line-heights: (
100
100
  text-align: center;
101
101
  }
102
102
 
103
+ .font-style--italic {
104
+ font-style: italic;
105
+ }
106
+
103
107
  .category__header {
104
108
  color: colors.$color--pink;
105
109
  font-size: $font-size--p;