mirror of
https://github.com/directus/directus.git
synced 2026-01-28 07:48:04 -05:00
* Add header bar basic * Fix alignment of breadcrumb * Fix icon size in breadcrumb * Add slots / stories for header bar * Fix typo * Add disabled color overrides to button * Fix box icon * Add header actions section for collapsable buttons * Tweak css of drawer responsively * Cover viewport (for notched use) * Hide gray boxes on iOS taps * Only show hover effect for devices that support hover * Finish collapsable header buttons * Remove wrong reference * Tweak spacing of nav toggle * Update storybook entry * Add storybook entry for header actions * Update structure of private-view and subcomponents * Add provide support to storybook * Update storybook / readme's for private view components * Use defineComponent instead of createComponetn * Fix broken import * Fix tests, update readmes, etc * Add storybook entries for header actions and module bar * Remove unused utils * Use defineComponent instead of createComponent * Update structure of stories * Fix story of private view
22 lines
701 B
HTML
22 lines
701 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
|
<link rel="shortcut icon" href="favicon.ico">
|
|
<link rel="manifest" href="manifest.webmanifest" />
|
|
<title>Directus</title>
|
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>We're sorry but Directus doesn't work without JavaScript enabled. Please enable it to continue.</strong>
|
|
</noscript>
|
|
<div id="app"></div>
|
|
<!-- built files will be auto injected -->
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|