mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Adding tutorial card
Summary: For now only html stub and docList adjustement for showing a tutorial card. It will be used in future diffs after tutorial implementation. Test Plan: Manual Reviewers: georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D3750
This commit is contained in:
@@ -8,11 +8,6 @@ import {bigBasicButton} from 'app/client/ui2018/buttons';
|
||||
// styles, which gives it priority.
|
||||
import 'popweasel';
|
||||
|
||||
export const docMenu = styled('div', `
|
||||
flex-grow: 1;
|
||||
max-width: 100%;
|
||||
`);
|
||||
|
||||
// The "&:after" clause forces some padding below all docs.
|
||||
export const docList = styled('div', `
|
||||
height: 100%;
|
||||
@@ -20,6 +15,7 @@ export const docList = styled('div', `
|
||||
overflow-y: auto;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
&:after {
|
||||
content: "";
|
||||
@@ -38,6 +34,15 @@ export const docList = styled('div', `
|
||||
}
|
||||
`);
|
||||
|
||||
export const docListContent = styled('div', `
|
||||
display: flex;
|
||||
`);
|
||||
|
||||
export const docMenu = styled('div', `
|
||||
flex-grow: 1;
|
||||
max-width: 100%;
|
||||
`);
|
||||
|
||||
const listHeader = styled('div', `
|
||||
min-height: 32px;
|
||||
line-height: 32px;
|
||||
|
||||
Reference in New Issue
Block a user