mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 02:36:52 +00:00
Bootstrapping.
This commit is contained in:
parent
3a07b785db
commit
e60f67dacb
4 changed files with 18 additions and 0 deletions
|
@ -72,6 +72,7 @@ block content
|
|||
include ./editor/chat
|
||||
|
||||
include ./editor/hotkeys
|
||||
include ./editor/feature-onboarding
|
||||
|
||||
script(type="text/ng-template", id="genericMessageModalTemplate")
|
||||
.modal-header
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
.feat-onboard
|
||||
.feat-onboard-wrapper
|
||||
h1.feat-onboard-title
|
||||
| Introducing
|
||||
span.feat-onboard-title-name Code check
|
||||
p.feat-onboard-description
|
||||
span.feat-onboard-description-name Code check
|
||||
| will highlight potential problems in your LaTeX code, allowing you to handle errors earlier and become more productive.
|
|
@ -11,6 +11,7 @@
|
|||
@import "./editor/publish-template.less";
|
||||
@import "./editor/online-users.less";
|
||||
@import "./editor/hotkeys.less";
|
||||
@import "./editor/feature-onboarding.less";
|
||||
|
||||
.full-size {
|
||||
position: absolute;
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
.feat-onboard {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: rgba(0, 0, 0, .8);
|
||||
}
|
Loading…
Reference in a new issue