-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCalendar.vue
More file actions
21 lines (20 loc) · 872 Bytes
/
Calendar.vue
File metadata and controls
21 lines (20 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
<div class="max-w-screen overflow-auto hidden md:block">
<iframe
src="https://calendar.google.com/calendar/embed?height=600&wkst=2&bgcolor=%23ffffff&ctz=Asia%2FKolkata&src=NXJidmI0azdjMTB1amZycGVib2g1amUwNzRAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%234285F4&title=CodeIIEST%20Sessions"
width="800"
height="600"
frameborder="0"
scrolling="no"
></iframe>
</div>
<div class="max-w-screen overflow-auto md:hidden">
<iframe
src="https://calendar.google.com/calendar/embed?height=600&wkst=2&bgcolor=%23ffffff&ctz=Asia%2FKolkata&src=NXJidmI0azdjMTB1amZycGVib2g1amUwNzRAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%234285F4&title=CodeIIEST%20Sessions"
width="400"
height="400"
frameborder="0"
scrolling="no"
></iframe>
</div>
</template>