forked from unisonweb/codebase-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunison-share.css
More file actions
34 lines (30 loc) · 845 Bytes
/
Copy pathunison-share.css
File metadata and controls
34 lines (30 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#app {
display: grid;
grid-template-rows: var(--app-header-height) auto;
grid-template-columns: auto;
grid-template-areas:
"app-header"
"page-layout";
}
/* -- App Error ---------------------------------------------------------- */
.app-error {
display: flex;
flex: 1;
flex-direction: column;
align-items: center;
padding-top: 8rem;
font-weight: 600;
color: var(--u-color_text);
}
.app-error .icon {
font-size: 4rem;
color: var(--u-color_critical_icon);
}
@import "./unison-share/banner.css";
@import "./unison-share/help-modal.css";
@import "./unison-share/publish-modal.css";
@import "./unison-share/report-bug-modal.css";
@import "./unison-share/download-modal.css";
@import "./unison-share/perspective-landing.css";
@import "./unison-share/page/catalog.css";
@import "./unison-share/page/user-page.css";