timemanager/frontend/src/index.html
Sebastian Böckelmann fd4012ec90
All checks were successful
Java CI with Maven / build (push) Successful in 45s
Progressbar vor advanced scheduler
2023-11-12 09:13:12 +01:00

36 lines
1005 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Frontend</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body class="mat-typography">
<app-root></app-root>
<style type="text/css">
.cal-week-view .cal-time-events {
max-height: 400px;
overflow-y: auto;
}
.cal-day-headers {
}
.cal-day-columns {
height: 100%;
}
</style>
</body>
</html>