summaryrefslogtreecommitdiff
path: root/sw-ui/src/main/resources/index.html
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-05-31 18:27:21 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-05-31 18:27:21 +0200
commit5b998fc16944fbec2d3fd1f0e4aa8b077f98e412 (patch)
tree4826c78d7db84f5bb9c65ae5cb6ac16434271190 /sw-ui/src/main/resources/index.html
parentDisplay assigned wonder in Lobby (diff)
downloadseven-wonders-5b998fc16944fbec2d3fd1f0e4aa8b077f98e412.tar.gz
seven-wonders-5b998fc16944fbec2d3fd1f0e4aa8b077f98e412.tar.bz2
seven-wonders-5b998fc16944fbec2d3fd1f0e4aa8b077f98e412.zip
Use blueprint CSS from CDN instead of local copy
Diffstat (limited to 'sw-ui/src/main/resources/index.html')
-rw-r--r--sw-ui/src/main/resources/index.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/sw-ui/src/main/resources/index.html b/sw-ui/src/main/resources/index.html
index 3ff6d320..da3fea6b 100644
--- a/sw-ui/src/main/resources/index.html
+++ b/sw-ui/src/main/resources/index.html
@@ -5,8 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="${publicPath}favicon.ico">
<title>Seven Wonders</title>
- <link href="css/blueprint-icons.css" rel="stylesheet" />
- <link href="css/blueprint.css" rel="stylesheet" />
+ <!-- Style dependencies -->
+ <link href="https://unpkg.com/normalize.css@^7.0.0" rel="stylesheet" />
+ <!-- Blueprint stylesheets -->
+ <link href="https://unpkg.com/@blueprintjs/icons@^3.4.0/lib/css/blueprint-icons.css" rel="stylesheet" />
+ <link href="https://unpkg.com/@blueprintjs/core@^3.10.0/lib/css/blueprint.css" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
bgstack15