@progressive-development/pd-calendar 0.1.19 → 0.1.20
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 +1 -1
- package/src/PdCalendar.js +8 -1
package/package.json
CHANGED
package/src/PdCalendar.js
CHANGED
|
@@ -169,6 +169,13 @@ export class PdCalendar extends LitElement {
|
|
|
169
169
|
font-weight: bold;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
+
.icon-container {
|
|
173
|
+
display: flex;
|
|
174
|
+
align-items: center;
|
|
175
|
+
justify-content: center;
|
|
176
|
+
gap: 5px;
|
|
177
|
+
}
|
|
178
|
+
|
|
172
179
|
.arrow {
|
|
173
180
|
cursor: pointer;
|
|
174
181
|
--pd-icon-size: var(--pd-calendar-title-icon-size, 1.2em);
|
|
@@ -282,7 +289,7 @@ export class PdCalendar extends LitElement {
|
|
|
282
289
|
|
|
283
290
|
<div class="header-main">
|
|
284
291
|
|
|
285
|
-
<div>
|
|
292
|
+
<div class="icon-container">
|
|
286
293
|
<pd-icon
|
|
287
294
|
@click="${this._previousMonth}"
|
|
288
295
|
class="arrow"
|