62 lines
1.5 KiB
Plaintext
62 lines
1.5 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Terminator</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
<link rel="stylesheet" href="https://uicdn.toast.com/calendar/latest/toastui-calendar.min.css" />
|
|
<script src="https://uicdn.toast.com/calendar/latest/toastui-calendar.min.js"></script>
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
|
<%= stylesheet_link_tag "tailwind", "data-turbo-track": "reload" %>
|
|
<%= stylesheet_link_tag "calendar.tailwind", "data-turbo-track": "reload" %>
|
|
|
|
<%= javascript_importmap_tags %>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
overflow: hidden;
|
|
}
|
|
body.calendar {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
overflow: hidden;
|
|
}
|
|
body.calendar main {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.w-full, .min-w-full, div[data-controller="main-calendar"] {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#main-calendar {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
.flex.justify-between.items-center {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
z-index: 1000;
|
|
background: rgba(255,255,255,0.8);
|
|
padding: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="calendar">
|
|
<main>
|
|
<%= yield %>
|
|
</main>
|
|
</body>
|
|
</html>
|