mod-base 1.0.41 → 1.0.42

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.42
4
+
5
+ - Adding duplicate submission styles
6
+
3
7
  ## 1.0.41
4
8
 
5
9
  - Add restoration icons
@@ -38,7 +42,7 @@
38
42
 
39
43
  ## 1.0.32
40
44
 
41
- - Updating `_fonts.scss` to clean up Sass Deprecation Warnings
45
+ - Updating `_fonts.scss` to clean up Sass Deprecation Warnings
42
46
 
43
47
  ## 1.0.31
44
48
 
@@ -76,13 +80,13 @@
76
80
 
77
81
  - Adding variables for our base typography (`h2`, `h3`, `body`) — so that our accessible components can use those instead of repeating values.
78
82
 
79
- ## 1.0.18
83
+ ## 1.0.18
80
84
 
81
85
  - Dark-mode updates: correct selectors list
82
86
 
83
87
  ## 1.0.17
84
88
 
85
- - Dark-mode updates: updated most common used selectors list
89
+ - Dark-mode updates: updated most common used selectors list
86
90
 
87
91
  ## 1.0.16
88
92
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -0,0 +1,44 @@
1
+ .duplicate-submission {
2
+ align-items: center;
3
+ background-color: $color-white;
4
+ display: flex;
5
+ flex-direction: column;
6
+ justify-content: center;
7
+ min-height: 390px;
8
+ padding: 40px 10px;
9
+ text-align: center;
10
+
11
+ h3 {
12
+ color: $color-charcoal5;
13
+ font-size: 1.375rem;
14
+ font-weight: bold;
15
+ margin: 30px auto 0;
16
+ }
17
+
18
+ p {
19
+ color: $color-charcoal5;
20
+ display: block;
21
+ font-size: .9375rem;
22
+ font-weight: 400;
23
+ line-height: 1.5;
24
+ margin: 20px auto 30px;
25
+ }
26
+
27
+ a.btn {
28
+ align-items: center;
29
+ display: flex;
30
+ flex-direction: column;
31
+ justify-content: center;
32
+ line-height: normal;
33
+ margin: 0 auto 30px;
34
+ max-width: 280px;
35
+ min-width: unset;
36
+ padding: 14px 0 15px;
37
+ width: 100%;
38
+
39
+ .btn__text {
40
+ font-size: 1.125rem;
41
+ visibility: visible;
42
+ }
43
+ }
44
+ }
@@ -0,0 +1 @@
1
+ @import 'duplicate-submission';
@@ -8,3 +8,6 @@
8
8
  @import 'grid';
9
9
  @import 'ratings';
10
10
  @import 'variables';
11
+
12
+ // components
13
+ @import 'components/index';