forked from dzearing/test-css-libraries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (20 loc) · 790 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<link rel="stylesheet" href="//spoppe-a.akamaihd.net/files/fabric/office-ui-fabric-core/5.0.1/css/fabric.min.css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/react/15.4.2/react.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/react/15.4.2/react-dom.js"></script>
<script type="text/javascript" src="dist/vendor.bundle.js"></script>
<style>
.ms-FocusRect {
visibility: hidden;
}
.ms-Fabric.is-focusVisible .ms-Focusable:focus.ms-FocusRect,
.ms-Fabric.is-focusVisible .ms-Focusable:focus .ms-FocusRect {
visibility: visible;
}
</style>
</head>
<body>
<script type="text/javascript" src="dist/main.bundle.js"></script>
</body>
</html>