@appartmint/mint 2.3.2 → 2.4.0
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/css/mint.css +1025 -1020
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/dist/js/imports/util/text.d.ts +4 -0
- package/dist/js/imports/util/text.d.ts.map +1 -1
- package/dist/js/index.js +6 -0
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.min.js +1 -1
- package/dist/js/index.min.js.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/_index.scss +3 -10
- package/src/scss/imports/components/{_backgrounds.scss → partial/_backgrounds.scss} +1 -1
- package/src/scss/imports/components/{_footer.scss → partial/_footer.scss} +1 -2
- package/src/scss/imports/components/{_header.scss → partial/_header.scss} +1 -1
- package/src/scss/imports/components/partial/_index.scss +9 -0
- package/src/scss/imports/components/section/_full.scss +42 -0
- package/src/scss/imports/components/section/_index.scss +8 -0
- package/src/scss/imports/components/{_landing.scss → section/_landing.scss} +2 -2
- package/src/scss/imports/components/{_buttons.scss → widget/_button.scss} +1 -1
- package/src/scss/imports/components/{_cards.scss → widget/_card.scss} +1 -1
- package/src/scss/imports/components/{_image.scss → widget/_image.scss} +1 -1
- package/src/scss/imports/components/widget/_index.scss +10 -0
- package/src/scss/imports/components/{_tables.scss → widget/_table.scss} +1 -1
- package/src/scss/imports/overrides/_amplify.scss +2 -2
- package/src/scss/imports/overrides/_index.scss +1 -0
- package/src/scss/imports/components/_video.scss +0 -36
- /package/src/scss/imports/{components → overrides}/_recaptcha.scss +0 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/// _video.scss - Video styles
|
|
2
|
+
/// @author App Art Mint LLC
|
|
3
|
+
///
|
|
4
|
+
/// @group Video
|
|
5
|
+
@charset 'utf-8';
|
|
6
|
+
|
|
7
|
+
/// Imports
|
|
8
|
+
@use 'sass:map';
|
|
9
|
+
@use '../../util' as *;
|
|
10
|
+
|
|
11
|
+
/// Video Styles
|
|
12
|
+
#{class(section-full)} {
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
align-items: flex-end;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
flex-direction: row;
|
|
18
|
+
min-height: calc(100vh - css-var(header-height) + 10rem);
|
|
19
|
+
gap: 2rem;
|
|
20
|
+
position: relative;
|
|
21
|
+
@include exit-padding;
|
|
22
|
+
@include fluid-padding;
|
|
23
|
+
|
|
24
|
+
iframe, video, #{class(image)}, #{class(embed)} {
|
|
25
|
+
position: absolute;
|
|
26
|
+
top: 0;
|
|
27
|
+
padding: 0;
|
|
28
|
+
width: 100%;
|
|
29
|
+
height: calc(100vh - css-var(header-height));
|
|
30
|
+
border: none;
|
|
31
|
+
object-fit: cover;
|
|
32
|
+
pointer-events: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
#{class(image)} {
|
|
36
|
+
img {
|
|
37
|
+
width: 100%;
|
|
38
|
+
height: 100%;
|
|
39
|
+
object-fit: cover;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
/// Imports
|
|
8
8
|
@use 'sass:map';
|
|
9
|
-
@use '
|
|
9
|
+
@use '../../util' as *;
|
|
10
10
|
|
|
11
11
|
/// Landing Styles
|
|
12
12
|
:root {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
#{class(landing)} {
|
|
25
25
|
@include exit-padding;
|
|
26
26
|
|
|
27
|
-
#{class(
|
|
27
|
+
#{class(section-full)} {
|
|
28
28
|
align-items: center;
|
|
29
29
|
top: 0;
|
|
30
30
|
left: 0;
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/// _video.scss - Video styles
|
|
2
|
-
/// @author App Art Mint LLC
|
|
3
|
-
///
|
|
4
|
-
/// @group Video
|
|
5
|
-
@charset 'utf-8';
|
|
6
|
-
|
|
7
|
-
/// Imports
|
|
8
|
-
@use 'sass:map';
|
|
9
|
-
@use '../util' as *;
|
|
10
|
-
|
|
11
|
-
/// Video Styles
|
|
12
|
-
#{class(video)} {
|
|
13
|
-
&-bg {
|
|
14
|
-
display: flex;
|
|
15
|
-
flex-direction: column;
|
|
16
|
-
align-items: flex-end;
|
|
17
|
-
justify-content: center;
|
|
18
|
-
flex-direction: row;
|
|
19
|
-
min-height: calc(100vh - css-var(header-height) + 10rem);
|
|
20
|
-
gap: 2rem;
|
|
21
|
-
position: relative;
|
|
22
|
-
@include exit-padding;
|
|
23
|
-
@include fluid-padding;
|
|
24
|
-
|
|
25
|
-
iframe, video, #{class(image)}, #{class(embed)} {
|
|
26
|
-
position: absolute;
|
|
27
|
-
top: 0;
|
|
28
|
-
padding: 0;
|
|
29
|
-
width: 100%;
|
|
30
|
-
height: calc(100vh - css-var(header-height));
|
|
31
|
-
border: none;
|
|
32
|
-
object-fit: cover;
|
|
33
|
-
pointer-events: none;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}
|
|
File without changes
|