@aquera/nile-elements 0.0.7 → 0.0.8

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
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent nile-elements following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "nile-elements",
6
- "version": "0.0.7",
6
+ "version": "0.0.8",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -72,18 +72,24 @@ export const styles = css`
72
72
  .dialog__header {
73
73
  flex: 0 0 auto;
74
74
  display: flex;
75
- padding: 24px 24px 24px 24px;
76
- background-color: #FAFAFA;
75
+ padding: 12px 24px;
76
+ background-color: #fafafa;
77
77
  border-radius: 4px 4px 0 0;
78
-
78
+ border: 1px solid #e5e9eb;
79
79
  }
80
80
 
81
81
  .dialog__title {
82
+ display: flex;
82
83
  flex: 1 1 auto;
83
- font: inherit;
84
- font-size: 1.25rem;
85
- line-height: 1.4;
84
+ align-items: center;
86
85
  margin: 0;
86
+ color: #000;
87
+ font-family: Colfax-regular;
88
+ font-size: 16px;
89
+ font-style: normal;
90
+ font-weight: 400;
91
+ line-height: 16px;
92
+ letter-spacing: 0.2px;
87
93
  }
88
94
 
89
95
  .dialog__header-actions {
@@ -108,14 +114,17 @@ export const styles = css`
108
114
  padding: 1.25rem;
109
115
  overflow: auto;
110
116
  -webkit-overflow-scrolling: touch;
117
+ border: 1px solid #e5e9eb;
118
+ border-radius: 4px 4px 0px 0px;
111
119
  }
112
120
 
113
121
  .dialog__footer {
114
122
  flex: 0 0 auto;
115
123
  text-align: right;
116
124
  padding: 12px 24px;
117
- background-color: #FAFAFA;
125
+ background-color: #fafafa;
118
126
  border-radius: 0 0 4px 4px;
127
+ border: 1px solid #e5e9eb;
119
128
  }
120
129
 
121
130
  .dialog__footer ::slotted(nile-button:not(:first-of-type)) {