diff --git a/client/src/App.vue b/client/src/App.vue
index cde2d77d..4162d657 100644
--- a/client/src/App.vue
+++ b/client/src/App.vue
@@ -69,7 +69,10 @@
&__header {
grid-area: h;
- display: grid;
+ display: -ms-grid;
+ @supports (display: grid) {
+ display: grid;
+ }
align-items: center;
justify-content: space-around;
background-color: $color-white;
@@ -81,7 +84,6 @@
/*
* For IE10+
*/
- display: -ms-grid;
-ms-grid-columns: 1fr 1fr 1fr;
-ms-grid-rows: 60px 60px;
diff --git a/client/src/components/rooms/RoomWidget.vue b/client/src/components/rooms/RoomWidget.vue
index 2f1303bc..b534df2c 100644
--- a/client/src/components/rooms/RoomWidget.vue
+++ b/client/src/components/rooms/RoomWidget.vue
@@ -57,7 +57,10 @@
}
.room-widget {
- display: grid;
+ display: -ms-grid;
+ @supports (display: grid) {
+ display: grid;
+ }
grid-template-rows: 210px 1fr;
overflow: hidden;
@include widget-shadow;
@@ -65,7 +68,6 @@
/*
* For IE10+
*/
- display: -ms-grid;
-ms-grid-rows: 210px 1fr;
-ms-grid-columns: 1fr;
diff --git a/client/src/pages/book.vue b/client/src/pages/book.vue
index 8020e093..01c57e0a 100644
--- a/client/src/pages/book.vue
+++ b/client/src/pages/book.vue
@@ -22,7 +22,10 @@
diff --git a/client/src/pages/module.vue b/client/src/pages/module.vue
index 8032fe54..5822fea5 100644
--- a/client/src/pages/module.vue
+++ b/client/src/pages/module.vue
@@ -51,14 +51,16 @@