@appartmint/mint 1.0.2 → 1.0.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appartmint/mint",
3
3
  "author": "App Art Mint LLC",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "license": "MIT",
6
6
  "description": "The front-end TS/SCSS framework of App Art Mint",
7
7
  "keywords": [
@@ -108,6 +108,8 @@
108
108
  &-icon {
109
109
  display: block;
110
110
  text-align: center;
111
+ background: none;
112
+ border: none;
111
113
 
112
114
  @include states(hover, focus, active) {
113
115
  i {
@@ -119,10 +121,16 @@
119
121
  display: inline-block;
120
122
  }
121
123
 
124
+ &#{class(lg)} {
125
+ i {
126
+ font-size: 4rem;
127
+ }
128
+ }
129
+
122
130
  i {
123
131
  margin: 0 !important;
124
132
  color: css-var($btn-border);
125
- font-size: 4rem;
133
+ font-size: 1.5rem;
126
134
 
127
135
  &::before {
128
136
  transition: color css-var(delay-default);
@@ -6,3 +6,4 @@
6
6
  @use './header';
7
7
  @use './image';
8
8
  @use './recaptcha';
9
+ @use './tables';
@@ -0,0 +1,18 @@
1
+ /// _tables.scss - Table styles
2
+ /// @author App Art Mint LLC
3
+ ///
4
+ /// @group Components
5
+ @charset 'utf-8';
6
+
7
+ /// Imports
8
+ @use '../util' as *;
9
+
10
+ /// Table
11
+ #{class(table)} {
12
+ #{class(actions)} {
13
+ display: flex;
14
+ align-items: center;
15
+ justify-content: flex-end;
16
+ gap: 1rem;
17
+ }
18
+ }