@axium/calendar 0.3.2 → 0.3.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
|
@@ -117,7 +117,9 @@
|
|
|
117
117
|
<span class="label">{weekDays[0].toLocaleString('default', { month: 'long', year: 'numeric' })}</span>
|
|
118
118
|
|
|
119
119
|
<!-- mobile -->
|
|
120
|
-
<button class="reset mobile-only
|
|
120
|
+
<button class="reset mobile-only" onclick={() => start.setTime(today.getTime())}>
|
|
121
|
+
<span class="day-number today">{today.getDate()}</span>
|
|
122
|
+
</button>
|
|
121
123
|
<button class="reset mobile-only icon-text" command="show-modal" commandfor="event-init"><Icon i="plus" /></button>
|
|
122
124
|
</div>
|
|
123
125
|
<div id="cal-sidebar" bind:this={calSidebar}>
|
package/routes/calendar/cal.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
body:has(#cal-app) {
|
|
2
|
-
top:
|
|
2
|
+
top: 4em;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
#cal-app {
|
|
@@ -66,7 +66,7 @@ div.attendees {
|
|
|
66
66
|
input,
|
|
67
67
|
select,
|
|
68
68
|
textarea {
|
|
69
|
-
|
|
69
|
+
width: 100%;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
textarea {
|
|
@@ -224,7 +224,7 @@ div.attendees {
|
|
|
224
224
|
inset: 3em 0 0;
|
|
225
225
|
z-index: 10;
|
|
226
226
|
background-color: var(--bg-menu);
|
|
227
|
-
font-size: clamp(0.95rem, 0.
|
|
227
|
+
font-size: clamp(0.95rem, 0.75rem + 2.5cqw, 1.35rem);
|
|
228
228
|
translate: -100% 0;
|
|
229
229
|
opacity: 0;
|
|
230
230
|
visibility: hidden;
|