Update gallery colors (#430)

* Update gallery colors

* fix lint error

* Fix test
This commit is contained in:
Tanuj Mittal
2021-02-06 01:19:36 +05:30
committed by GitHub
parent 8dc5ed590a
commit f0b4737313
6 changed files with 21 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
@import "../../less/Common/Constants";
.standalone-gallery-root {
background: @GalleryBackgroundColor;
}

View File

@@ -1,4 +1,5 @@
import "bootstrap/dist/css/bootstrap.css";
import "./GalleryViewer.less";
import { initializeIcons } from "office-ui-fabric-react/lib/Icons";
import { Text, Link } from "office-ui-fabric-react";
import * as React from "react";
@@ -32,7 +33,7 @@ const onInit = async () => {
};
const element = (
<>
<div className="standalone-gallery-root">
<header>
<GalleryHeaderComponent />
</header>
@@ -53,7 +54,7 @@ const onInit = async () => {
<GalleryAndNotebookViewerComponent {...props} />
</div>
</>
</div>
);
ReactDOM.render(element, document.getElementById("galleryContent"));