mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) move client code to core
Summary: This moves all client code to core, and makes minimal fix-ups to get grist and grist-core to compile correctly. The client works in core, but I'm leaving clean-up around the build and bundles to follow-up. Test Plan: existing tests pass; server-dev bundle looks sane Reviewers: dsagal Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D2627
This commit is contained in:
48
app/client/ui/App.css
Normal file
48
app/client/ui/App.css
Normal file
@@ -0,0 +1,48 @@
|
||||
html {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100%;
|
||||
font-family: sans-serif;
|
||||
font-size: 1.2rem;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#grist-app {
|
||||
height: 100%;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-flex-wrap: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.g-help {
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
left: 10%;
|
||||
height: 80%;
|
||||
width: 80%;
|
||||
z-index: 999;
|
||||
|
||||
padding: 1rem;
|
||||
|
||||
background-color: rgba(0, 0, 0, .8);
|
||||
|
||||
-webkit-border-radius: 1rem;
|
||||
-moz-border-radius: 1rem;
|
||||
border-radius: 1rem;
|
||||
|
||||
color: #fff;
|
||||
font-size: 1.4rem;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.g-help-table {
|
||||
width: 100%;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
Reference in New Issue
Block a user